-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathShop.xhtml
87 lines (72 loc) · 1.88 KB
/
Shop.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
<!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;">"Making you O since 1789"</h1>
<img id="home" src="home.jpg"/>
<table class="reflow">
<tbody>
<tr>
<td>
<a href="ActualClassic.xhtml">
<span>Classic</span>
<p>The finest selection of our original recipe nuts.</p>
<img class="reflow" src="krispy-kreme-donuts.jpg"/>
</a>
</td>
<td>
<a href="Filled.xhtml">
<span>Filled</span>
<p>The finest selection of our succulent filled nuts.</p>
<img class="reflow" src="filled.jpg"/>
</a>
</td>
<td>
<a href ="Gourmet.xhtml">
<span>Gourmet</span>
<p>The finest selection of our special designer nuts.</p>
<img class="reflow" src="gourmet.jpg"/>
</a>
</td>
<td>
<span>Custom Made</span>
<p>Whatever your heart desires. Anything for you </p>
<img class="reflow" src="Lord.jpg"/>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>