-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGourmet.xhtml
177 lines (152 loc) · 4.67 KB
/
Gourmet.xhtml
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Shop</title>
<link rel="stylesheet" type="text/css" href="StyleSheet.css"/>
</head>
<body>
<div id="header">
<a href="Shop.xhtml">
<h1 class="head">Big O Doughnuts</h1>
</a>
</div>
<div id="main">
<div id="NavBar">
<ul>
<a href="Shop.xhtml">
<li>Main Shop</li>
</a>
<a href="New2017Collection.xhtml">
<li>New 2017 Collection</li>
</a>
<a href="WeddingCollection.xhtml">
<li>Wedding Collection</li>
</a>
<a href="Delivery.xhtml">
<li>Delivery</li>
</a>
<a href="ActualOrderPage.xhtml">
<li>Order Page</li>
</a>
<a href="AboutUs.xhtml">
<li>About Us</li>
</a>
</ul>
</div>
<h1 style="text-align:center;">Explore our special "Gourmet" range</h1>
<img id="home" src="home.jpg"/>
<table class="reflow">
<tbody>
<tr>
<td>
<span>Pizza</span>
<p>Yep. Pizza Doughnuts.</p>
<form action="http://www2.macs.hw.ac.uk:8080/ns53/Cart" method="post">
<select name="buy">
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
</select>
<input type="submit" value="add to cart"/>
</form>
<img class="reflow" src="gourmet.jpg"/>
</td>
<td>
<span>Haggis</span>
<p>Haggis filled nuts.</p>
<form action="http://www2.macs.hw.ac.uk/~ns53/WebProgram/Cart" method="post">
<select name="buy">
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
</select>
<input type="submit" value="add to cart"/>
</form>
<img class="reflow" src="gourmet.jpg"/>
</td>
<td>
<span>Cheeseburger</span>
<p>Burger with doughnut buns.</p>
<form action="http://www2.macs.hw.ac.uk/~ns53/WebProgram/Cart" method="post">
<select name="buy">
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
</select>
<input type="submit" value="add to cart"/>
</form>
<img class="reflow" src="gourmet.jpg"/>
</td>
<td>
<span>Cake</span>
<p>50% cake, 50% doughnut.</p>
<form action="http://www2.macs.hw.ac.uk/~ns53/WebProgram/Cart" method="post">
<select name="buy">
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
</select>
<input type="submit" value="add to cart"/>
</form>
<img class="reflow" src="gourmet.jpg"/>
</td>
</tr>
<tr>
<td>
<span>English Breakfast</span>
<p>Stuffed with breakfast items.</p>
<form action="http://www2.macs.hw.ac.uk/~ns53/WebProgram/Cart" method="post">
<select name="buy">
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
</select>
<input type="submit" value="add to cart"/>
</form>
<img class="reflow" src="gourmet.jpg"/>
</td>
<td>
<span>Fish Supper</span>
<p>Battered with extra haddock.</p>
<form action="http://www2.macs.hw.ac.uk/~ns53/WebProgram/Cart" method="post">
<select name="buy">
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
</select>
<input type="submit" value="add to cart"/>
</form>
<img class="reflow" src="gourmet.jpg"/>
</td>
<td>
<span>Double Dip</span>
<p>Deep fried twice.</p>
<form action="http://www2.macs.hw.ac.uk/~ns53/WebProgram/Cart" method="post">
<select name="buy">
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
</select>
<input type="submit" value="add to cart"/>
</form>
<img class="reflow" src="gourmet.jpg"/>
</td>
<td>
<span>Frozen</span>
<p>A summer time favourite.</p>
<form action="http://www2.macs.hw.ac.uk/~ns53/WebProgram/Cart" method="post">
<select name="buy">
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
</select>
<input type="submit" value="add to cart"/>
</form>
<img class="reflow" src="gourmet.jpg"/>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>