Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Anirudh Bahuguna Section B 24/2101026
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Demo test
48 changes: 48 additions & 0 deletions Anirudh Bahuguna Section B 24/demo test q 1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
Part A ->

<!DOCTYPE html>
<BODY>
<TITLE>STUDENT LOGIN </TITLE>
<FORM action="file:///S:/college%20work/html/4.HTML">
<fieldset>
<legend>REGISTRATION LOGIN </legend>
<B>ENTER YOUR USER-ID </B><INPUT TYPE = "TEXT" required ><BR>
<B> ENTER YOUR PASSWORD</B><INPUT TYPE ="password" required><BR>
<input type="submit">
<input type="reset">

</FORM>

</fieldset>
</BODY>



Part B ->

<!DOCTYPE html>
<BODY>
<TITLE>STUDENT INFORMATION </TITLE>
<FORM action="file:///S:/college%20work/html/Q4.HTML">
<B> FIRST NAME </B><INPUT TYPE = "TEXT" placeholder="ENTER FIRST NAME HERE" ><BR>
<B>LAST NAME </B><INPUT TYPE = "TEXT" placeholder="ENTER LAST NAME HERE" ><BR>
<B>ENTER YOUR DATE OF BIRTH </B><INPUT TYPE = "date" placeholder="ENTER DOB" ><BR>
<B>CONTACT </B> <INPUT type="tel"placeholder="ENTER MOBILE NUMBER" ><BR>
<B> EMAIL </B><INPUT TYPE = "email"placeholder="ENTER EMAIL HERE" ><BR>
<B>SELECT YOUR GENDER </B><BR>
MALE<INPUT TYPE = "radio"NAME=R1 ><BR>
FEMALE<INPUT TYPE = "radio" NAME=R1><BR>
<B>CHOOSE YOUR COURSE</B>
<select>
<option>SELECT COURSE
<option>MCA
<option>BCA
<option>B.Sc(IT)

</select><BR>
<B>UPLOAD YOUR MARKSHEET HERE</B>
<INPUT type="file">
<input type ="submit" value="Return to login">
<INPUT TYPE ="reset">
</FORM>
</BODY>
6 changes: 6 additions & 0 deletions Anirudh Bahuguna Section B 24/demo test q 2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
External style sheets have the following advantages over internal and inline styles:

one change to the style sheet will change all linked pages
you can create classes of styles that can then be used on many different HTML elements
consistent look and feel across multiple web pages
improved load times because the css file is downloaded once and applied to each relevant page as needed