-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
56 lines (55 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Feast - Menu</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a id="rightmost-nav-item" href="about.html">About</a>
</nav>
</header>
<main>
<div class="hero">
<img src="images/Hero Image.png" alt="" aria-hidden="true" height=688 width="1440">
<div class="hero-text">
<h1>Menu</h1>
<p>San Francisco's #1 Food Joint</p>
</div>
</div>
<div class="main-info">
<div class="food-menu">
<h2>Appetizers</h2>
<ul class="food-items">
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
</ul>
<h2>Entrées</h2>
<ul class="food-items">
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
</ul>
<h2>Desserts</h2>
<ul class="food-items">
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
<li>Food One - $8.99</li>
</ul>
</div>
</div>
</main>
<footer>
© Feast Restaurant 2023. Designed by Steve
</footer>
</body>
</html>