-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoodCheck.html
43 lines (35 loc) · 1.27 KB
/
foodCheck.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FoodHackie</title>
<link href='https://fonts.googleapis.com/css?family=Roboto Mono' rel='stylesheet'>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<nav>
<ul id="nav-bar">
<li style="float: left">
<a style="padding: 0;" href="index.html"><img style="width: 3em; padding: 0.25em 1em; padding-bottom: 0" src="logo.png" /></a>
</li>
<li style="float: left; padding: 1em; padding-left: 0; font-weight: 700">
FoodHackie
</li>
<li><a href="listOfOrder.html">List of Order</a></li>
<li><a href="foodCheck.html">Food Check</a></li>
</ul>
</nav>
<div>
<h1 id="heading-categories">Categories</h1>
</div>
<div id="foodCheckButtons">
<button type="submit" class="FridgeButton" onClick="location.href='foodCheckFridge.html'">
Fridge
</button>
<button type="submit" class="PantryButton" onClick="location.href='foodCheckPantry.html'">
Pantry
</button>
<button type="submit" class="TableButton" onClick="location.href='foodCheckTable.html'">
Table
</button>
</div>
</html>