-
Notifications
You must be signed in to change notification settings - Fork 0
/
favourites.html
73 lines (73 loc) · 2.33 KB
/
favourites.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
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>The Realm Food Menu</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="menu.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="drinks favSection">
<div class="favItems">
<h3 class="yellowHeader floatLeft">Export 33</h3>
<h3 class="yellowHeader floatRight">$7.50</h3>
<div class="clear"></div>
<p class="smallText">
On tap beer
</p>
<p class="yellowButton floatRight add"><span class="originalText">Add to Order</span></p>
</div>
</div>
<div class="brunch favSection">
<div class="favItems">
<h3 class="yellowHeader floatLeft">Basic Grill Brunch</h3>
<h3 class="yellowHeader floatRight">$7.50</h3>
<div class="clear"></div>
<p class="smallText">
Poached eggs, served with Hataitai Bread Shop toast, bacon and hash brown
</p>
<p class="yellowButton floatRight add"><span class="originalText">Add to Order</span></p>
</div>
</div>
<div class="twoMains favSection">
<div class="favItems">
<h3 class="yellowHeader floatLeft">2 for $29</h3>
<h3 class="yellowHeader floatRight">$29.00</h3>
<div class="clear"></div>
<p class="smallText">
Choose two mains for $29
</p>
<a class="yellowButton floatRight" href="twoMains.html">Choose Mains</a>
</div>
</div>
<div class="pizzaDeal favSection">
<div class="favItems">
<h3 class="yellowHeader floatLeft">2 Pizzas for $25</h3>
<h3 class="yellowHeader floatRight">$25.00</h3>
<div class="clear"></div>
<p class="smallText">
Choose two pizzas for $25
</p>
<a class="yellowButton floatRight" href="2for25.html">Choose Pizzas</a>
</div>
</div>
</main>
<script src="js/jquery-3.3.1.js"></script>
<script src="js/script.js"></script>
</body>
</html>