-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathday2.html
72 lines (43 loc) · 1.37 KB
/
day2.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>forms</title>
</head>
<body>
<form>
<input type="color">
<label for="name">Enter Name</label>
<input id="name" type="text" placeholder="Enter Name">
<br><br>
<input type="text" required pattern="^[789]\d{9}$" placeholder="Enter Contact">
<br><br>
<input type="email" readonly placeholder="Enter Email" >
<br><br>
<input type="password" placeholder="Enter Password" required minlength="5" maxlength="8">
<br><br>
<input type="date">
<br><br>
Male
<input type="radio" name="gender">
Female
<input type="radio" name="gender">
<br><br>
I agree to the conditions <input type="checkbox">
<br><br>
<textarea cols="30" rows="5" placeholder="Address"></textarea>
<br><br>
<input type="number" min="10" max="30" placeholder="Enter Some Number">
<br><br>
<select>
<option>Select City</option>
<option>Mumbai</option>
<option>Pune</option>
<option>Hyderabad</option>
</select>
<br><br>
<button type="submit">Regsiter</button>
<button type="reset">Clear Form</button>
<button type="button">Useless</button>
</form>
</body>
</html>