-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (27 loc) · 831 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sandwich Maker</title>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<nav>
<h2>An Angry Bear's Deluxe Sandwiches</h2>
</nav>
<div id="ingredients" class="ingredients">
<h3>Select the type of ingredient you'd like to add, then specify how many portions:</h3>
</div>
<div id="output">
<div id="display-box" class="display-box">
</div>
</div>
<script src="javascripts/meats.js"></script>
<script src="javascripts/cheese.js"></script>
<script src="javascripts/condiments.js"></script>
<script src="javascripts/veggies.js"></script>
<script src="javascripts/bread.js"></script>
<script src="javascripts/SandwichMaker.js"></script>
<script src="javascripts/DOMHandler.js"></script>
</body>
</html>