-
Notifications
You must be signed in to change notification settings - Fork 78
/
website_for_pizza
99 lines (82 loc) · 2.61 KB
/
website_for_pizza
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
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pizza order</title>
</head>
<body>
<center>
<h2 style="color: yellowgreen;" ><marquee behavior="" direction="">Order Pizza of your choice now!!!</marquee></h2>
<table border="3" width="700" height="600">
<thead ><th colspan="2" style="font-size: large;">Pizzazzs</th></thead>
<tr>
<td align="center">
<label for="name">Name</label>
</td>
<td>
<input type="text" name="name" id="name">
</td>
<tr>
<td align="center" rowspan="3">
<label for="topping">Pizza Topping</label>
</td>
<td> <input type="radio" name="topping" id="radio1">
<label for="radio1">Supreme</label>
</td>
<tr>
<td>
<input type="radio" name="topping" id="radio1">
<label for="radio2">Vegetarian</label>
</td>
</tr>
<tr>
<td>
<input type="radio" name="topping" id="radio1">
<label for="radio3">Hawailian</label>
</td>
</tr>
</tr>
</tr>
<tr>
<td align="center">
<label for="sauce">Pizza Sauce</label>
</td>
<td>
<label for="sauce"></label>
<select name="sauce" id="sauce">
<option value="a">Tomato</option>
<option value="b">Mayo</option>
<option value="c">Red sauce</option>
<option value="d">White sauce</option>
</select>
</td>
</tr>
<tr>
<td align="center">
<label for="extras">Optional Extras</label>
</td>
<td>
<input type="checkbox" name="check1" id="extras1">
<label for="extras1">Extra Cheese</label>
<input type="checkbox" name="check2" id="extras2">
<label for="extras2">Gluten Free Base</label>
</td>
</tr>
<tr>
<td colspan="2">
<label for="instruction"> Delivery Instructions:</label>
<textarea name="ins" id="instrctions" cols="80" rows="5"></textarea>
</td>
</tr>
<tfoot>
<tr>
<th colspan="2">
<input type="submit" value="Order" id="order">
</th>
</tr>
</tfoot>
</center>
</table>
</body>
</html>