-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 949 Bytes
/
Copy pathindex.html
File metadata and controls
46 lines (45 loc) · 949 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
39
40
41
42
43
44
45
46
<html>
<head>
<title>Football Scores</title>
</head>
<body>
<table border ="1" >
<tr>
<th colspan= "2">Home Team</th>
</tr>
<tr>
<td>Name</td>
<td><input type="text" name="a1"></td>
</tr>
<tr>
<td>Pizza Topping</td>
<td>
<input type="radio" name="term" value="supreme">supreme<br>
<input type="radio" name="term" value="Vegetarian">Vegetarian<br>
<input type="radio" name="term" value="Hawaiian">Hawaiian<br>
</td>
</tr>
<tr>
<td>Pizza Sauce</td>
<td>
<select>
<option value = "china">China</option>
</select>
</td>
</tr>
<tr>
<td>Option Extras</td>
<td>
<input type="checkbox" name="Facilities" value="Cheese">Extra Cheese
<input type="checkbox" name="Facilities" value="Gluten">Gluten Free Base
</td>
</tr>
<tr>
<td colspan= "2">
Delivery instructions </br>
<textarea rows="5" cols="50"></textarea>
</td>
</tr>
</table>
</body>
</html>