-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (85 loc) · 2.24 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles/main.sass.sass.css">
<title>Day 5 HW Responsive Form</title>
</head>
<body>
<form>
<section>
FIRST NAME
<input type="text" placeholder="Jonathan">
LAST NAME
<input type="text" placeholder="Doe">
EMAIL ADDRESS
<input type="text" placeholder="[email protected]">
COUNTRY
<select>
<option selected="selected">Choose a country</option>
<option value="1">Germany</option>
<option value="2">Ireland</option>
<option value="3">Scotland</option>
<option value="4">United States</option>
</select>
BIOGRAPHY
<textarea></textarea>
</section>
<section>
PHONE NUMBER
<input type="text" placeholder="+351 999 9999">
AFFILIATIONS
<textarea></textarea>
OCCUPATION
<select>
<option selected="selected">Choose an occupation</option>
<option value="1">Teacher</option>
<option value="2">Programmer</option>
<option value="3">Chef</option>
<option value="4">Unemployed</option>
</select>
CAT'S NAME
<input type="text" placeholder="Kitty">
<div class="radioquestion">
FAVORITE GADGET<br><br>
<label>
<input type="radio">HEALING HOCKEY DYNABOMB<br>
</label>
<label>
<input type="radio">GARLIC GYRO-STABILIZED AQUAWASHER<br>
</label>
<label>
<input type="radio">NUCLEAR HAIRSPRAY<br>
</label>
<label>
<input type="radio">STABILIZED EXPLOSIVE LADLE
</label>
</div>
</section>
<section class="last">
TYPE OF TALENT
<select>
<option selected="selected">Choose a talent</option>
<option value="1">back-flips</option>
<option value="2">arm-fart</option>
<option value="3">break-dance</option>
<option value="4">party-hearty</option>
</select>
<div class="check">
FAVORITE DRINKS<br><br>
<input type="checkbox">ORANGE JUICE<br>
<input type="checkbox">COFFEE<br>
<input type="checkbox">SODA<br>
<input type="checkbox">BEER<br>
<input type="checkbox">WINE<br>
</div>
SPECIAL POWERS
<input type="text" placeholder="Anti-gravity">
WEAPON OF CHOICE
<input type="text" placeholder="Lightsaber">
COMMENTS
<textarea></textarea>
</section>
<button>SEND YOUR DATA</button>
</form>
</body>
</html>