-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
165 lines (163 loc) · 5.27 KB
/
index.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
<!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>Restaurant Website</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/7a4b62b0a4.js"
crossorigin="anonymous"
></script>
</head>
<body>
<nav>
<div class="navigation container">
<div class="logo_container">
<img src="images/logo.png" alt="logo" />
</div>
<div class="bar_icon">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="container">
<div class="hero">
<div class="hero_image">
<img src="images/hero_image.png" alt="hero image" />
</div>
<div class="hero_content">
<div class="tag">50% Off on All Products</div>
<h1>Enjoy Your Delicious Food</h1>
<p>
It is very important for the customer to pay attention to the adipiscing process.
Pleasures, this time the needs of the body
</p>
<button class="explore_btn">Explore Now</button>
</div>
</div>
<section class="features">
<div class="feature">
<img src="icons/discount.png" alt="" />
<div class="feature_content">
<h3>Discount Voucher</h3>
It is very important for the customer to pay attention to the adipiscing process.
</div>
</div>
<div class="feature">
<img src="icons/fresh.png" alt="" />
<div class="feature_content">
<h3>Fresh Healthy Food</h3>
It is very important for the customer to pay attention to the adipiscing process.
</div>
</div>
<div class="feature">
<img src="icons/delivery.png" alt="" />
<div class="feature_content">
<h3>Fast Home Delivery</h3>
It is very important for the customer to pay attention to the adipiscing process.
</div>
</div>
</section>
<div class="divider"></div>
<div class="menu">
<div class="tag">Our Menu</div>
<h2>Explore Our Menu</h2>
<div class="grid">
<div class="item1">
<a href="details.html"> <img
class="grid-image"
src="images/grid_image1.png"
alt="image 1"
/></a>
</div>
<div class="item2">
<a href="details.html"> <img
class="grid-image"
src="images/grid_image2.png"
alt="image 2"
/></a>
</div>
<div class="item3">
<a href="details.html"> <img
class="grid-image"
src="images/grid_image3.png"
alt="image 3"
/></a>
</div>
<div class="item4">
<a href="details.html"> <img
class="grid-image"
src="images/grid_image4.png"
alt="image 4"
/></a>
</div>
<div class="item5">
<a href="details.html"> <img
class="grid-image"
src="images/grid_image5.png"
alt="image 5"
/></a>
</div>
<div class="item6">
<a href="details.html"> <img
class="grid-image"
src="images/grid_image6.png"
alt="image 6"
/></a>
</div>
<div class="item7">
<a href="details.html"> <img
class="grid-image"
src="images/grid_image7.png"
alt="image 7"
/></a>
</div>
</div>
</div>
</div>
<footer>
<div class="footer_container container">
<div class="footer_logo">
<img src="images/logo.png" alt="logo" />
</div>
<div class="link_lists">
<h3>Main Links</h3>
<ul>
<li><a href="odertracking.html">Order Tracking</a></li>
<li><a href="contacts.html">Contact Us</a></li>
</ul>
</div>
<div class="link_lists">
<h3>Support</h3>
<ul>
<li>About Us</li>
<li>Privacy Policy</li>
<li>Terms & Conditons</li>
</ul>
</div>
<div class="news_letter">
<h3>Your precious Review</h3>
<input type="email" placeholder="Enter your Review..." />
<h3>Follow Us</h3>
<div class="icon_container">
<div class="icon"><a href="https://www.facebook.com/aditya.chavhan.357">
<i class="fa fa-facebook"></i></a>
</div>
<div class="icon"><a href="https://www.twitter.com/prianshu_khalde">
<i class="fa fa-twitter" aria-hidden="true"></i></a>
</div>
<div class="icon"><a href="https://www.instagram.com/mr_aditya_366">
<i class="fa fa-instagram" aria-hidden="true"></i></a>
</div>
<div class="icon"><a href="https://www.youtube.com">
<i class="fa fa-youtube" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>