-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (54 loc) · 2.15 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
<!DOCTYPE html>
<html>
<head>
<title>BrewMaster Coffee Shop</title>
</head>
<body style="background-color: whitesmoke;">
<center><h2>Welcome to BrewMaster Coffee Shop</h2></center>
<header style="background-color:bisque;">
<nav>
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="C:\Users\Elie HODARI\Documents\coffee\Project1/order.html">Online order</a>
</li>
<li>
<a href="C:\Users\Elie HODARI\Documents\coffee\Project1/menu.html">Our menu</a>
</li>
<li>
<a href="C:\Users\Elie HODARI\Documents\coffee\Project1/price.html">Our price</a>
</li>
</ul>
</nav>
</header>
<main>
<section style="background:chocolate;"">
<center><h2>You ask! We serve! We deliver!</h2></center>
<p>We are honoured to have you and your trust whereby we sell the best coffee in all African countries </p>
<img src="C:\Users\Elie HODARI\Documents\coffee\Project1/istockphoto-1191321406-1024x1024.jpg">
</section>
</main>
<footer>
<center><h3>Customers are our first options</h3></center>
<p>©BrewMaster Coffee Shop 2024</p>
<nav style="background-color: darkkhaki;">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="C:\Users\Elie HODARI\Documents\coffee\Project1/order.html">Online order</a>
</li>
<li>
<a href="C:\Users\Elie HODARI\Documents\coffee\Project1/menu.html">Our menu</a>
</li>
<li>
<a href="C:\Users\Elie HODARI\Documents\coffee\Project1/price.html">Our price</a>
</li>
</ul>
</nav>
</footer>
</body>
</html>