-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
86 lines (78 loc) · 2.74 KB
/
form.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
86
<!doctype html>
<html>
<head>
<title>Ubermelon Order Form</title>
</head>
<body>
<h1>Order!</h1>
<table>
<thead>
<tr>
<th colspan=2>Prices</th>
</tr>
</thead>
<tbody>
<tr>
<td>Melon Name</td>
<td>Price per lb.</td>
</tr>
<tr>
<td>Watermelon</td>
<td>$1.59</td>
</tr>
<tr>
<td>Honeydew</td>
<td>$0.99</td>
</tr>
<tr>
<td>Cantaloupe</td>
<td>$1.29</td>
</tr>
<tr>
<td>Crenshaw</td>
<td>$2.19</td>
</tr>
<tr>
<td>Canary</td>
<td>$11.99</td>
</tr>
</tbody>
</table>
<p>Place your orders here! You know you want to.</p>
<form>
First Name
<label><input type="text" name="firstname"></label>
<br>
<label for "field-lastname">Last Name</label> <input type="text" name="lastname" id="field-lastname"><br>
<label>Melon Type
<select name="melontype">
<option value="watermelon">Watermelon</option>
<option value="honeydew">Honeydew</option>
<option value="cantaloupe">Cantaloupe</option>
<option value="crenshaw">Crenshaw</option>
<option value="canary">Canary</option>
</select>
</label>
<br>
Quantity
<label><input type="text" name="quantity"></label>
<br>
Delivery Time
<label><input type="radio" name="time" value="am">AM</label>
<label><input type="radio" name="time" value="pm">PM</label>
<label><input type="radio" name="time" value="wat">WAT</label>
<br>
Returning Customer?
<label><input type="radio" name="returningcustomer" value="yes">YES</label>
<label><input type="radio" name="returningcustomer" value="no">NO</label>
<br>
For Statistical Purposes:
<label><input type="checkbox" name="stats" value="dog">Dog</label>
<label><input type="checkbox" name="stats" value="cat">Cat</label>
<label><input type="checkbox" name="stats" value="hedgehog">Hedgehog</label>
<label><input type="checkbox" name="stats" value="balloonicorn">Balloonicorn</label>
<label><input type="checkbox" name="stats" value="yak">Yak</label>
<br>
</form>
</body>
</html>