-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (72 loc) · 2.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table width="20%">
<form>
<tr>
<th colspan="2" align="center"><b>Pizza Shop 2.0</b></th>
</tr>
<tr>
<th scope="row" align="left">Name</th>
<td>
<form>
<input type="text" id="name" placeholder="Input your name here" required>
</form>
</td>
</tr>
<tr>
<th scope="row" align="left">Pizza Topping</th>
<td>
<div>
<input type="radio" id="Supreme" name="drone" value="Supreme" checked required />
<label for="Supreme">Supreme</label>
</div>
<div>
<input type="radio" id="Vegeterian" name="drone" value="Vegeterian" />
<label for="Vegeterian">Vegeterian</label>
</div>
<div>
<input type="radio" id="Hawaiian" name="drone" value="Hawaiian" />
<label for="Hawaiian">Hawaiian</label>
</div>
</td>
</tr>
<tr>
<th scope="row" align="left">Pizza Sauce</th>
<td>
<select name="pizza_sauce">
<option value="1">Tomato</option>
<option value="2">Pepper</option>
<option value="3">Ketchup</option>
</select>
</td>
</tr>
<tr>
<th scope="row" align="left">Optional Extras</th>
<td>
<input type="checkbox" id="extra_cheese" name="extra_cheese" unchecked />
<label for="extra_cheese">Extra Cheese</label>
<input type="checkbox" id="gluten_free_base" name="gluten_free_base" unchecked />
<label for="gluten_free_base">gluten Free Base</label>
</td>
</tr>
<tr>
<th scope="row" colspan="2" align="left">Delivery Instructions:
<textarea name="" id="" cols="100%" rows="3" required></textarea>
</th>
</tr>
<tr>
<th scope="row" colspan="2" align="left">
<button>Send my order</button>
</th>
</tr>
</form>
</table>
</body>
</html>