-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
201 lines (129 loc) · 4.56 KB
/
about.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nirvana Garden</title>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header section starts -->
<header>
<a href="#" class="logo"><i class="fas fa-utensils"></i>Nirvana Garden</a>
<nav class="navbar">
<a class="active" href="index.html">home</a>
<a href="Food.html">Local dishes</a>
<a href="drinks.html">Drinks</a>
<a href="about.html">About Us</a>
<a href="order.html">order</a>
</nav>
<div class="icons">
<i class="fas fa-bars" id="menu-bars"></i>
<i class="fas fa-search" id="search-icon"></i>
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-shopping-cart"></a>
</div>
</header>
<!-- header section ends-->
<br>
</br>
<br>
</br>
<br>
</br>
<br>
</br>
<br>
</br>
<!-- about section starts -->
<section class="about" id="about">
<h3 class="sub-heading"> about us </h3>
<h1 class="heading"> why choose us? </h1>
<div class="row">
<div class="image">
<img src="images/about-img.png" alt="">
</div>
<div class="content">
<div class="content">
<h3>food made with love</h3>
<p>.Enriched with natural vegetables, protain, carbohydrate and water. Our Food are prepared by world class chef with with heart of love, Enjoy your meal!</p>
<a href="#" class="btn">order now</a>
</div>
<div class="icons-container">
<div class="icons">
<i class="fas fa-shipping-fast"></i>
<span>free delivery</span>
</div>
<div class="icons">
<i class="fas fa-dollar-sign"></i>
<span>easy payments</span>
</div>
<div class="icons">
<i class="fas fa-headset"></i>
<span>24/7 service</span>
</div>
</div>
<a href="#" class="btn">learn more</a>
</div>
</div>
</section>
<!-- about section ends -->
<!-- steps section starts -->
<div class="step-container">
<h1 class="heading">how it <span>works</span></h1>
<section class="steps">
<div class="box">
<img src="images/step-1.jpg" alt="">
<h3>choose your favorite food</h3>
</div>
<div class="box">
<img src="images/step-2.jpg" alt="">
<h3>free and fast delivery</h3>
</div>
<div class="box">
<img src="images/step-3.jpg" alt="">
<h3>easy payments methods</h3>
</div>
<div class="box">
<img src="images/step-4.jpg" alt="">
<h3>and finally, enjoy your food</h3>
</div>
</section>
</div>
<!-- steps section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>locations</h3>
<a href="#">japan</a>
<a href="#">russia</a>
<a href="#">USA</a>
<a href="#">france</a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#">+123-456-7890</a>
<a href="#">+234 708 1515380</a>
<a href="#">info@blacklipsbooking.me</a>
<a href="#">Army Barracks Estate Kurudu, Nigeria - 91004</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#">instagram</a>
<a href="#">linkedin</a>
</div>
</div>
<div class="credit"> copyright @ 2021 by <span>Luke Okagha</span> </div>
</section>
<!-- footer section ends -->
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>