-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMenu.html
29 lines (27 loc) · 824 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Menu</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Menu.html">Menu</a></li>
<li class="logo"><a href="index.html">Artisan Bakery Logo</a></li>
<li><a href="Locations.html">Locations</a></li>
<li><a href="Contacts.html">Contacts</a></li>
</ul>
</nav>
</header>
<section>
<div>a</div>
<div>b</div>
<div>c</div>
</section>
<section>lower-section</section>
<footer>footer</footer>
</body>
</html>