-
Notifications
You must be signed in to change notification settings - Fork 0
/
burger.html
63 lines (63 loc) · 2.23 KB
/
burger.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
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>The Realm Burgers & Sandwiches</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<nav class="nav">
<div class="navContent">
<a href="menuFood.html">
<img class="navArrow" src="images/arrow.svg" alt="Return" />
</a>
<a href="menu.html">
<img class="navImg" src="images/The-Realm-Logo1.png" alt="Main Menu" />
</a>
<a href="viewOrder.html">
<img class="navOrder" src="images/dinner.svg" alt="View Order" />
</a>
</div>
<hr class="navLine"/>
</nav>
<main class="mainContent">
<div class="menuOption">
<h3 class="yellowHeader">Chicken Burger</h3>
<p class="smallText">
Spiced rubbed marinated chicken thigh, milk bun, onion, pickle & chunky chips.
</p>
<p class="yellowButton floatRight add"><span class="originalText">Add for $17.00</span></p>
<div class="clear"></div>
</div>
<div class="menuOption">
<h3 class="yellowHeader">Kiwi Burger</h3>
<p class="smallText">
Beef patty, lettuce, tomato, milk bun, tomato relish, beetroot & chucky chips.
</p>
<p class="yellowButton floatRight add"><span class="originalText">Add for $17.00</span></p>
<div class="clear"></div>
</div>
<div class="menuOption">
<h3 class="yellowHeader">Halloumi Burger</h3>
<p class="smallText">
Haloumi patty, lettuce, tomato, milk bun, pickle, tomato relish & chucky chips.
</p>
<p class="yellowButton floatRight add"><span class="originalText">Add for $17.00</span></p>
<div class="clear"></div>
</div>
<div class="menuOption botPad">
<h3 class="yellowHeader">Chicken or Steak Clubby</h3>
<p class="smallText">
With bacon, lettuce, tomato, caramelized onions & creamy mayo stacked with a side of chunky chips.
</p>
<div class="flexJust">
<p class="yellowButton add"><span class="originalText">Add Chicken $17</span></p>
<p class="yellowButton add"><span class="originalText">Add Steak $17</span></p>
</div>
</div>
</main>
<script src="js/jquery-3.3.1.js"></script>
<script src="js/script.js"></script>
</body>
</html>