-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.html
175 lines (127 loc) · 6.62 KB
/
menu.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en-US" class="lightroot">
<head>
<meta charset="utf-8">
<title>Menu</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/images/logo/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/menu.css">
</head>
<body>
<!-- MainHeader -->
<nav id="header">
<iframe scrolling="no" width="100%" height="100%" src="header.html" frameborder="0"></iframe>
</nav>
<div class="toggle-btn" id="_1st-toggle-btn">
<input class="oricheck" type="checkbox">
<span></span>
</div>
<main>
<!-- Banner Section -->
<article class="banner">
<h1>Our Menu</h1>
<p><em>Beast kind form divide night above let moveth bearing darkness.</em></p>
</article>
<!-- Welcoming Section -->
<article class="welcome container">
<!-- delicious food section -->
<section class="welcomeB">
<div class="welcomeB-header col-6">
<h3><span class="secondary-color">we serve</span><br> delicious food</h3>
<p class="welcomeB-paragraph">
They're fill divide i their yielding our after have him fish on there for greater man moveth, moved Won't together isn't for fly divide mids fish firmament on net.
</p>
</div>
<div class="welcomeB-photos">
<div class="welB-group center">
<div class="welB-card">
<div class="img-wrap">
<img src="assets/images/food1.jpg" alt="food">
</div>
<div class="img-title center">
<h4>Mexican Eggrolls</h4><span class="secondary-color">$14.50</span>
</div>
<p class="photos-des">Face together given moveth divided form Of Seasons that fruitful.</p>
</div>
<div class="welB-card">
<div class="img-wrap">
<img src="assets/images/food2.jpg" alt="food">
</div>
<div class="img-title center">
<h4>Chicken Burger</h4><span class="secondary-color">$9.50</span>
</div>
<p class="photos-des">Face together given moveth divided form Of Seasons that fruitful.</p>
</div>
<div class="welB-card">
<div class="img-wrap">
<img src="assets/images/food3.jpg" alt="food">
</div>
<div class="img-title center">
<h4>Topu Lasange</h4><span class="secondary-color">$12.50</span>
</div>
<p class="photos-des">Face together given moveth divided form Of Seasons that fruitful.</p>
</div>
</div>
<div class="welB-group center">
<div class="welB-card">
<div class="img-wrap">
<img src="assets/images/food4.jpg" alt="food">
</div>
<div class="img-title center">
<h4>Pepper Potatoas</h4><span class="secondary-color">$14.50</span>
</div>
<p class="photos-des">Face together given moveth divided form Of Seasons that fruitful.</p>
</div>
<div class="welB-card">
<div class="img-wrap">
<img src="assets/images/food5.jpg" alt="food">
</div>
<div class="img-title center">
<h4>Bean Salad</h4><span class="secondary-color">$8.50</span>
</div>
<p class="photos-des">Face together given moveth divided form Of Seasons that fruitful.</p>
</div>
<div class="welB-card">
<div class="img-wrap">
<img src="assets/images/food6.jpg" alt="food">
</div>
<div class="img-title center">
<h4>Beatball Hoagie</h4><span class="secondary-color">$11.50</span>
</div>
<p class="photos-des">Face together given moveth divided form Of Seasons that fruitful.</p>
</div>
</div>
</div>
</section>
</article>
<!-- Book your table -->
<article class="book-your-table">
<div class="art-header">
<h3>Book <span class="secondary-color">your</span> table</h3>
<p>Beast kind form divide night above let moveth bearing darkness.</p>
</div>
<form class="picker">
<input type="date" id="date-picker" name="date-picker">
<input type="time" id="time-picker" name="time-picker">
<input type="text" id="customer-name" name="customer-name">
</form>
<button class="bk-btn btn btn-primary" type="submit" name="" id="submit"><a>BOOK A TABLE</a></button>
</article>
</main>
<!---------------------BtnTop--------------->
<div>
<button id="topBtn" class="btnTop"><i class="fas fa-arrow-up"></i></button>
</div>
<!------ Footer ----->
<footer id="footer">
<iframe scrolling="no" width="100%" height="100%" src="footer.html" frameborder="0"></iframe>
</footer>
<script src="assets/js/element.js"></script>
<script src="assets/js/darkmode.js"></script>
</body>
</html>