0% found this document useful (0 votes)
4 views

Example3.html

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

Example3.html

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

12/17/24, 3:33 AM Example3.

html

ExamModel\Example3.html

1 <html>
2 <head>
3 <title> Registration Form </title>
4 </head>
5 <body style = "background-color:lightskyblue">
6 <h1 style =" text-align: center;"><u><b>Registration Form</b></u></h1>
7 <form action ="#" method="post">
8 <b>
9 <label for ="First Name">First Name : </label>
10 <input type = "text" id ="First Name" name ="First Name"placeholder="Hello"
required ><br><br>
11 <label for="Second Name">Second Name : </label>
12 <input type ="text" id ="Second Name" name ="Second Name"><br><br>
13 <label for = "UserName">UserName : </label>
14 <input type ="text" id = "UserName" name ="UserName"><br><br>
15 <label for ="Password">Password</label>
16 <input type ="password"id ="Password " name = "Password"><br><br>
17 <Label for ="Confirm Password">Confirm Password</label>
18 <input type = "password" id ="Confirm Password" name ="Confirm Password"><br><br>
19 <label for = "Address">Address</label><br>
20 <textarea id ="Address" name = "Address" rows = "4" cols = "50"></textarea><br>
<br>
21 <label for ="Date of Birth">Date of Birth</label>
22 <input type = "Date" id = "Date of Birth" name = "Date of Birth"><br><br>
23 <label for ="Sex">Sex</label>
24 <input type = "radio" id = "Male" name = "Sex" value = "Male">
25 <label for ="Male">Male</label>
26 <input type = "radio" id = "Female" name = "Sex" value = "Female">
27 <Label for ="Female">Female</Label><br><br>
28 <label for = "Martial Status">Martial Status</label>
29 <input type = "radio" id = "Martial Status" name = "Martial Status" value =
"Married">
30 <label for = "Married">Married</label>
31 <input type = "radio" id ="Martial Status" name = "Martial Status" value
="Single">
32 <label for ="Single">Single</label><br><br>
33 <label for = "PhoneNumber">Phone Number </label>
34 <input type = "text" id = "PhoneNumber" name = "PhoneNumber"><br><br>
35 <Label for ="Branch">Branch</Label>
36 <input type ="radio" id = "Branch" name = "Branch" value = "CSE">
37 <label for = "CSE">CSE</label>
38 <input type ="radio" id = "Branch" name = "Branch" value = "IT">
39 <label for = "CSE">IT</label>
40 <input type ="radio" id = "Branch" name = "Branch" value = "EEE">
41 <label for = "CSE">EEE</label>
42 <input type ="radio" id = "Branch" name = "Branch" value = "MECH">
43 <label for = "CSE">MECH</label><br><br>
44
45
46 <label for ="Languages">Languages Known</label>
47 <input type ="checkbox" id = "English" name = "Languages" value = "English">
48 <label for = "English">English</label>

localhost:58942/b59ca540-7735-4b98-9a7d-6f14db0dd5d0/ 1/2
12/17/24, 3:33 AM Example3.html

49 <input type ="checkbox" id = "Hindi" name = "Languages" value = "Hindi">


50 <label for = "Hindi">Hindi</label>
51
52 </b>
53 <br>
54 <input type = "submit" value = "Submit">
55 <input type = "reset" value = "Cancel">
56
57
58 </form>
59 </body>
60 </html>

localhost:58942/b59ca540-7735-4b98-9a7d-6f14db0dd5d0/ 2/2

You might also like