-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitem_2.html
49 lines (49 loc) · 1.53 KB
/
item_2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<form>
<fieldset>
<legend><i>Contact Information</i></legend>
<label for="fname">First name:</label>
<input type="text" id="fname" /><br />
<label for="lname">Last name: </label>
<input type="text" id="lname" /><br />
<label for="email">E-mail: </label>
<input type="email" id="email" /><br />
</fieldset>
</form>
<form>
<fieldset>
<legend><i>Compettition Question</i></legend>
<div>How tall is the Eiffel Tower in Paris, France?</div>
<input type="radio" id="r1" />
<label for="r1">584ft</label><br />
<input type="radio" id="r2" />
<label for="r2">784ft</label><br />
<input type="radio" id="r3" />
<label for="r3">984ft</label><br />
<input type="radio" id="r4" />
<label for="r4">1184ft</label><br />
</fieldset>
</form>
<form>
<fieldset>
<legend><i>Tiebreaker Question</i></legend>
<div>In 25 words or less, say why you would like to win $10,000:</div>
<textarea rows="11" cols="40"></textarea>
</fieldset>
</form>
<form>
<fieldset>
<legend><i>Enter Compettition</i></legend>
<button>Enter Compettition</button>
</fieldset>
</form>
</body>
</html>