-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.html
More file actions
57 lines (54 loc) · 1.8 KB
/
Copy pathmenu.html
File metadata and controls
57 lines (54 loc) · 1.8 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Menu</title>
<link rel="icon" type="image/jpg" href="images/cornucopia-favicon-32px.png">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/menu.css">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC|Handlee|Merienda|Neucha|Over+the+Rainbow|Rock+Salt|Satisfy|Shadows+Into+Light|Simonetta" rel="stylesheet">
</head>
<body>
<header>
<h1 class="header-title">
Shopping List Builder
</h1>
<h3 class="thanksgiving-edition">~Thanksgiving Edition~</h3>
<nav>
<hr>
<ul>
<li><a href="./index.html">RECIPES</a></li>
<li><a href="./menu.html">SELECTED MENU</a></li>
<li><a href="./list.html">SHOPPING LIST</a></li>
<li><a href="./about.html">ABOUT US</a></li>
</ul>
<hr>
</nav>
</header>
<div class="photo-break">
<img src="images/fruit-banner.png" alt="Fruit Banner">
</div>
<div>
<hr>
<h2>YOUR MENU</h2>
<hr>
</div>
<table id = "menu-list">
</table>
<a href = "list.html"></a><button id = "buildshop" type = "submit">BUILD SHOPPING LIST</button></a>
<a href = "index.html"></a><button id = "goback" type = "submit">GO BACK TO RECIPES</button></a>
<hr>
<div class="photo-break">
<img src="images/fruit-banner.png" alt="Fruit Banner">
</div>
<hr>
<script src = "menu.js"></script>
</body>
<footer>
<p>COPYRIGHT</p>
<p>Anthony, Erin, Julie, Lorin, Xochil</p>
<p>Codefellows 201 - November 2018</p>
</footer>
</html>