-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.html
108 lines (93 loc) · 3.48 KB
/
menu.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
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Menu - Coffy Cafe</title>
<link rel="stylesheet" href="style.css" />
<script src="myscript.js"></script>
</head>
<body>
<div id="menu-content">
<header>
<img src="Images/Logo_cc.png" alt="Coffy Cafe Logo" class="icon">
<h1>COFFY CAFE</h1>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="menu.html" class="active">MENU</a></li>
<li><a href="findus.html">FIND US</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<hr />
</header>
<article id="menu">
<h2 id="menu-title">Our Menu</h2>
<div>
<h3>Coffee</h3>
<ul>
<li>Long Black: $4.50</li>
<li>Short Black: $4.00</li>
<li>Espresso: $3.70</li>
<li>Cappuccino: $5.00</li>
<li>Latte: $5.00</li>
</ul>
</div>
<div>
<h3>Teas</h3>
<ul>
<li>English Breakfast: $5.00</li>
<li>Earl Grey: $5.00</li>
<li>Chamomile: $5.00</li>
<li>Chai: $5.00</li>
</ul>
</div>
<div>
<h3>Breakfast</h3>
<ul>
<li>Bacon & Eggs: $8.00</li>
<li>Pancake Stack: $7.00</li>
<li>Cranberry Scones: $7.00</li>
<li>English Breakfast: $9.00</li>
</ul>
</div>
</article>
<hr />
<div id="menu-gallery">
<img src="Images/Breakfast above.jpg" alt="Breakfast items" class="responsive">
<img src="Images/Greenhouse Table.jpg" alt="Coffy Cafe Table" class="responsive">
<img src="Images/Gourmet Meal.jpg" alt="Food" class="responsive">
</div>
<hr />
<footer>
<address>
<ul>
<li>123 Richmond Road</li>
<li>Grey Lynn</li>
<li>Auckland</li>
</ul>
<ul>
<li>(09) 123-4567</li>
<li><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</address>
<div id="copyright">
<p>© DISD_Group_T 2022 No Rights Reserved</p>
</div>
<div id="socials">
<table>
<tr>
<td><a href="http://www.facebook.com"><img src="Images/facebook-logo.png" alt="facebook icon" /></a></td>
<td><a href="http://www.twitter.com"><img src="Images/twitter-logo.png" alt="twitter icon" /></a></td>
</tr>
<tr>
<td><a href="http://www.instagram.com"><img src="Images/instagram-logo.png" alt="instagram icon" /></a></td>
<td><a href="http://www.linkedin.com"><img src="Images/linkedin-logo.png" alt="linkedin icon" /></a></td>
</tr>
</table>
</div>
</footer>
</div>
</body>
</html>