forked from anuragmadhesia/HTML-and-CSS-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask2_Registration_form.html
More file actions
62 lines (62 loc) · 2.29 KB
/
Copy pathTask2_Registration_form.html
File metadata and controls
62 lines (62 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html>
<head>
<title>Task 2</title>
</head>
<body>
<h1 align="center">REGISTRATION FORM USING HTML TAGS</h1>
<fieldset>
<legend>Form Submission</legend>
<table>
<tr>
<td>NAME :</td>
<td><input type="text" placeholder="Enter Your Name" autocomplete="off"/></td>
</tr>
<tr>
<td>EMAIL :</td>
<td><input type="email" placeholder="Enter Your Email"/></td>
</tr>
<tr>
<td>PASSWORD</td>
<td><input type="password" minlength="6" maxlength="10" placeholder="Enter Your Password"/></td>
</tr>
<tr>
<td>D.O.B. :</td>
<td><input type="date"/></td>
</tr>
<tr>
<td>Gender :</td>
<td>MALE<input type="radio" name="r"/></td>
<td>FEMALE<input type="radio" name="r"/></td>
<td>OTHER<input type="radio" name="r"/></td>
</tr>
<tr>
<td>SPORT :</td>
<td>HOCKEY<input type="checkbox"/></td>
<td>CRICKET<input type="checkbox"/></td>
<td>FOOTBALL<input type="checkbox"/></td>
<td>BASEBALL<input type="checkbox"/></td>
</tr>
<tr>
<td>Your Photo :</td>
<td><input type="file"/></td>
</tr>
<tr>
<td>YEAR</td>
<td>
<select>
<option>FIRST</option>
<option>SECOND</option>
<option>THIRD</option>
</select>
</td>
</tr>
<tr>
<td>MESSAGE :<textarea placeholder="Enter your Message"></textarea></td>
</tr>
<tr>
<td><input type="button" value="Register Now"></td>
</tr>
</table>
</fieldset>
</body>
</html>