-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (60 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assigment5</title>
</head>
<body>
<form>
<table border="1px" width="50%" align="center" cellspadding="50">
<th colspan="6">Pizza Shop 2.0</th>
</tr>
<tr>
<td width="20%">Name:</td>
<td bgcolor="pink"></td>
</tr>
<tr>
<td rowspan="1">Pizza Topping</td>
<td>
<input type="radio" name="fav" id="Superme"> <label for="Superme">Superme</label>
<br>
<input type="radio" name="fav" id="Vegetarian"><label for="Vegetarian">Vegetarian</label>
<br>
<input type="radio" name="fav" id="Hawailan"><label for="Hawailan">Hawailan</label>
</td>
</tr>
<tr>
<td>Pizza Source</td>
<td>
<select name="pizza" id="pizaa">
<option value="Ketchup">Ketchup</option>
<option value="Onion">Onion</option>
<option value="cheese">Cheese</option>
</select>
</td>
</tr>
<tr>
<td>Optional Extras</td>
<td>
<input type="checkbox" name="Cheese" id="cheese"><label for="Cheese">ExraCheese</label>
<input type="checkbox" name="Gluten Free Base" id="Gluten Free Base"><label
for="Gluten Free Base">Gluten Free Base</label>
</td>
</tr>
<tr>
<td colspan="2">
Delivery Instructios:
<br>
<textarea cols="50" rows="4"></textarea>
</td>
</tr>
<tr>
<td colspan="2">
<input type="button" value="Send My Order">
</td>
</tr>
</table>
</form>
</body>
</html>