-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform.html
More file actions
63 lines (56 loc) · 1.46 KB
/
form.html
File metadata and controls
63 lines (56 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
</head>
<body>
<form action="#" method="#">
<label>name</label>
<input type="text" title="Name" placeholder="Name"><br>
<label>Email</label>
<input type="email" hidden><br>
<label>Password</label>
<input type="password"><br>
<label>DOB</label>
<input type="date" name=""><br>
<label>Image</label>
<input type="file" name=""><br>
<label>Gender</label>
Male<input type="radio" name="Gender">
Female<input type="radio" name="Gender">
Other<input type="radio" name="Gender"><br>
<label>Hobbies</label>
Cricket<input type="checkbox" name="">
Hockey<input type="checkbox" name="">
Ludo<input type="checkbox" name="">
Foolball<input type="checkbox" name=""><br>
<label>Course</label>
<select>
<option>--Select Course--</option>
<option>BCA</option>
<option>MCA</option>
<option>B Tech</option>
<option>BBA</option>
</select><br>
<label>Search</label>
<input type="search"><br>
<label>Select Color</label>
<input type="color"><br>
<label>Range</label>
<input type="range"><br>
<label>Phone</label>
+91<input type="tel"><br>
<label>Mobile</label>
<input type="number"><br>
<label>Time</label>
<input type="time"><br>
<label>Date TIME</label>
<input type="datetime-local"><br>
<label>week</label>
<input type="week"><br>
<label>Month</label>
<input type="month"><br>
<input type="submit" name="">
</form>
</body>
</html>