-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
117 lines (117 loc) · 3.22 KB
/
Copy pathmenu.html
File metadata and controls
117 lines (117 loc) · 3.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bite-Knights</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Bitcount:wght@100..900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav>
<div class="main-nav">
<nav >
<a href="./home.html">Home</a>
<a href="./aboutus.html">About Us</a>
<a href="https://chat.whatsapp.com/F7WsLpfsUQD50BQWWN9lIH?mode=ems_copy_t">Join Whatsapp</a>
</nav>
</div>
</nav>
<h1>BITE KNIGHTS</h1>
<h2>MENU</h2>
<table class="slide-in" id="menu">
<thead>
<tr>
<th colspan="2">Item</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td class="table-img">
<img
class="table-img"
src="./media/laysclassicsalted.png"
alt="laysyellow"
/>
</td>
<td>Lays Classic Salted (80g)</td>
<td class="price">₹50</td>
</tr>
<tr>
<td class="table-img">
<img
class="table-img"
src="./media/layscreamonion.png"
alt="laysyellow"
/>
</td>
<td>Lays American Cream & Cheese (80g)</td>
<td class="price">₹50</td>
</tr>
<tr>
<td class="table-img">
<img
class="table-img"
src="./media/laysindiamagicmasala.png"
alt="laysyellow"
/>
</td>
<td>Lays India's Magic Masala (80g)</td>
<td class="price">₹50</td>
</tr>
<tr>
<td class="table-img">
<img class="table-img" src="./media/redbull.png" alt="laysyellow" />
</td>
<td>RedBull (350ml)</td>
<td class="price">₹165</td>
</tr>
<tr>
<td class="table-img">
<img
class="table-img"
src="./media/bingogstyle.png"
alt="laysyellow"
/>
</td>
<td>Bingo OG Chilli-Sprinkeld Chips (85g)</td>
<td class="price">₹50</td>
</tr>
<tr>
<td class="table-img">
<img
class="table-img"
src="./media/doritosnachocheese.png"
alt="laysyellow"
/>
</td>
<td>Doritos Nacho Cheese (142g)</td>
<td class="price">₹90</td>
</tr>
<tr>
<td class="table-img">
<img
class="table-img"
src="./media/bingogstyle.png"
alt="laysyellow"
/>
</td>
<td>Cornitos Nacho Chips</td>
<td class="price">₹35</td>
</tr>
</tbody>
</table>
<div class="menu-button">
<button>
<a class="bottom-links" href="./feedback.html">Suggest Items</a>
</button>
</div>
</body>
<footer></footer>
</html>