-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (91 loc) · 2.49 KB
/
index.html
File metadata and controls
91 lines (91 loc) · 2.49 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
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="results.html" method="GET" enctype="multipart/form-data">
<div>
<label for="name">Name</label>
<input type="text" name="name" id="name" >
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" id="email" >
</div>
<div>
<label for="age">Age</label>
<input type="number" name="age" id="age" min="1" max="200" step="5">
</div>
<div>
<label for="date">Birthdate</label>
<input type="date" name="date" id="date" min="2019-06-10">
</div>
<div>
Favorite Food
<div>
<label for="banana">Banana</label>
<input type="checkbox" name="banana" id="banana">
</div>
<div>
<label for="apple">Apple</label>
<input type="checkbox" name="apple" id="apple">
</div>
</div>
<div>
Gender
<div>
<label for="male">Male</label>
<input type="radio" name="gender" id="male" value="male">
</div>
<div>
<label for="female">Female</label>
<input type="radio" name="gender" id="female" value="female">
</div>
<div>
<label for="other">Other</label>
<input type="radio" name="gender" id="other" value="other">
</div>
</div>
<div>
<label for="eyeColor">Eye Color</label>
<select name="eyeColor" id="eyeColor" multiple>
<option value="Green">Green</option>
<option label="Red" value="Red"></option>
</select>
</div>
<div>
<label for="bio">Bio</label>
<textarea id="bio" name="bio"></textarea>
</div>
<input type="hidden" name="hidden" value="hi">
<div>
<label for="file">File</label>
<input id="file" type="file" name="file">
</div>
<div>
<label for="phone">Phone</label>
<input type="tel" name="phone" id="phone">
</div>
<div>
<label for="url">URL</label>
<input type="url" name="url" id="url">
</div>
<div>
<label for="color">Color</label>
<input type="color" name="color" id="color">
</div>
<div>
<label>
Password
<input type="password" name="password" >
</label>
</div>
<button type="reset">Reset</button>
<button type="submit">Submit</button>
</form>
<!-- <script src="scripts.js"></script> -->
</body>
</html>