-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path008.html
More file actions
38 lines (38 loc) · 1009 Bytes
/
008.html
File metadata and controls
38 lines (38 loc) · 1009 Bytes
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
<html>
<head>
<style>
</style>
</head>
<body>
<h1>
A Fancy Form
</h1>
<form>
<div>
<label for="name_input">Name</label>
<input type="text" name="name_input"></input>
</div>
<label for="age_input">Age</label>
<input type="text" name="age_input"></input>
<div>
<label for="color_input">Favorite Color</label>
<select>
<option value="magenta">Magenta</option>
<option value="red">Red</option>
<option value="green">Green</option>
<option value="blue">Blue</option>
<option value="fuchsia">Fuchsia</option>
</select>
</div>
<div>
<input type="radio" name="music" value="love">Love Music</input>
<input type="radio" name="music" value="hate">Hate Music</input>
</div>
<div>
Is it raining?<input type="checkbox" name="check" value="yes"></input>
</div>
<div>
<input type="submit"></input>
</div>
</body>
</html>