-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWeddingCollection.xhtml
52 lines (42 loc) · 1.1 KB
/
WeddingCollection.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Wedding Collection</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">Wedding Collection</h1>
<img id="home" src="heart.jpg"/>
<p> Please contact us on 07123456789 to book an appointment</p>
<p> with our expert wedding doughnut planners.</p>
</div>
</body>
</html>