-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathf.html
More file actions
83 lines (69 loc) · 3.33 KB
/
f.html
File metadata and controls
83 lines (69 loc) · 3.33 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>FORM</title>
<caption><h1 align="center"><u>REGISTRATION FORM </u></h1> </caption>
<br>
</head>
<body style="background:rgb(171, 230, 222) ">
<img src="km_html.jpg">
<form action="us.html" method="GET">
<label><STRong>FIRST NAME:</STRong></label>
<input style="text-align: center;" type="text" placeholder=" First Name" required="">
<label><strong>LAST NAME:</strong></label>
<input style="text-align: center;" type="text" placeholder="Last Nmae" required="">
<br>
<br>
<label><strong>ADDRES :</strong></label>
<input style="text-align: center;" type="text" placeholder="Address" required="">
<br>
<br>
<label><strong>GENDER :</strong></label>
<input type="radio" name="GENDER" required=""><strong>MALE</strong>
<input type="radio" name="GENDER" required=""><strong>FEMALE</strong>
<input type="radio" name="GENDER" required=""><strong>OTHER</strong>
<br>
<br>
<label> <strong>AGE :</strong></label>
<input style="text-align: center;" type="number" placeholder="Age" required="" >
<br>
<br>
<label><strong>BIRTHDAY: </strong></label>
<input type="date" required="">
<br>
<br>
<label><strong>EMAIL :</strong></label>
<input style="text-align: center;" type="email" placeholder="xxxx@gamil.com" required="">
<br>
<br>
<label><strong>PASSWORD :</strong>
<input style="text-align: center;" type="password" placeholder="password" required="">
<br>
<br>
<label><strong>PHONE NO:</strong></label>
<select>
<option>+91</option>
<option>+33</option>
<option>+00</option>
</select>
<input style="text-align: center;" type="number" placeholder="phone number" required="">
<br>
<br>
<label><strong>QUALIFICATION :</strong></label>
<select required="">
<option>10</option>
<option>12</option>
<option>UG</option>
</select>
<br>
<br>
<label> <strong>I AGREE ALL THE CONDITION</strong></label>
<input type="checkbox" required="">
<br>
<br>
<input type="submit" value="submit">
<br>
<br>
</form>
</body>
</html>