-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutdoor.html
38 lines (32 loc) · 1.11 KB
/
outdoor.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
<body>
<form>
<table>
<fieldset>
Name: <input type="text" name="name">
</fieldset>
<fieldset>
Email Address:
<input type="text" name="email">
</fieldset>
<fieldset>
<legend>Why did you visit this site?</legend>
<input type="checkbox" value="Shooting" name="reasons"/>Shooting
<input type="checkbox" value="Knives" name="reasons"/>Knives
<input type="checkbox" value="Outdoor Gear" name="reasons"/> Outdoor Gear
</fieldset>
<fieldset>
<legend>How often do you visit this site?</legend>
<input type="radio" value="Very often" name="purchase">Very often
<input type="radio" value="Sometimes" name="purchase">Sometimes
<input type="radio" value="Never" name="purchase">Never
</fieldset>
<fieldset>
<legend>Do you have any suggestions for this site? New content, something to change, etc.</legend>
<textarea rows="3" cols="60"></textarea>
</fieldset>
<fieldset>
<button type="submit" value="Submit">Submit</button>
<button type="reset" value="Reset">Reset</button>
</fieldset>
</form>
</body>