-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
278 lines (271 loc) · 10.7 KB
/
Copy pathindex.html
File metadata and controls
278 lines (271 loc) · 10.7 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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>Zomato | Home</title>
<style>
html,body{
margin:0;
padding:0;
box-sizing: border-box;
overflow-x: hidden;
}
#header-img{
position: relative;
width:100vw;
height:600px;
background-image:linear-gradient(to right,rgba(0,0,0,0.4),rgba(0,0,0,0.6)), url('https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fwallpapersdsc.net%2Fwp-content%2Fuploads%2F2016%2F09%2FFood-HD-Background.png&f=1&nofb=1');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
header{
width:100vw;
height:60px;
}
.nav-menu{
width:60vw;
height:60px;
}
.zomato{
display: block;
font-weight: bolder;
color:white;
text-align: center;
font-size: 68px;
margin:0;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.header-flex{
margin-top: 100px;
}
.nav-link{
border-bottom: 0px solid black;
transition: border-bottom 0.3s;
cursor: pointer;
}
.nav-link:hover{
border-bottom: 5px solid white;
}
.search-box{
width:30vw;
height:60px;
background-color: white;
border:none;
border-top-left-radius:20px ;
border-bottom-left-radius: 20px;
padding-left: 20px;
outline:none;
font-weight: bold;
font-size: 18px;
}
.search-btn{
width: 130px;
background-color: red;
color: white;
border: none;
font-size: 20px;
font-weight: bold;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
#second-section{
margin-top:50px;
margin-bottom: 50px;
}
.card{
width:100%;
height:200px;
background-color: white;
border: none;
border-radius: 10px;
box-shadow: 1px 1px 10px #ccc;
overflow: hidden;
transition: box-shadow 0.3s;
margin-bottom: 10px;
}
.card:hover{
box-shadow: 1px 1px 10px #000;
cursor:pointer;
}
.card-bottom{
position: absolute;
background-color: white;
height: 50px;
width: 100%;
margin-top: 150px;
}
#popular-locations{
margin-top: 50px;
margin-bottom: 50px;
}
.popular-heading{
font-size: 40px;
color: black;
}
.locations-div{
width:100%;
height:60px;
background-color: white;
border: 2px solid #ccc;
border-radius: 10px;
cursor: pointer;
}
.locations-div:hover{
box-shadow: 1px 1px 5px #ccc;
}
#get-zomato-app{
margin-top:50px;
margin-bottom: 50px;
padding-top: 30px;
padding-bottom: 30px;
background-color: rgba(234, 241, 130, 0.1);
}
.email-input{
width:250px;
height: 40px;
padding-left: 10px;
border:1px solid #ccc;
outline:none;
border-radius: 10px;
background-color: white;
}
@media only screen and (max-width : 768px) {
.locations-div{
margin-bottom: 10px;
}
}
</style>
</head>
<body>
<div id="header-img">
<header>
<div class="d-flex justify-content-center">
<div class="nav-menu">
<p class="float-left text-white m-0 mt-3">Get the app</p>
<p class="float-right text-white m-0 mt-3 h4 nav-link">Sign up</p>
<p class="float-right mr-4 text-white m-0 mt-3 h4 nav-link">Login</p>
</div>
</div>
</header>
<div class="container">
<div class="d-flex justify-content-center header-flex">
<p class="zomato">Zomato</p>
</div>
<div class="d-flex justify-content-center mt-4">
<input type="text" placeholder="Search for dishes or cuisines..." class="search-box"/>
<button class="search-btn">Search</button>
</div>
</div>
</div>
<section id="second-section">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="card">
<img src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fwallpapersdsc.net%2Fwp-content%2Fuploads%2F2016%2F09%2FJunk-Food-Computer-Wallpaper.jpg&f=1&nofb=1" height="100%" width="100%"/>
<div class="card-bottom">
<p class="h4 m-0 mt-2 text-center">Order Online</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<img src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Ftasteofindiaabq.com%2Fwp-content%2Fuploads%2F2014%2F12%2FIndian-Food-Samosa-Dish-HD-Wallpapers.jpg&f=1&nofb=1" height="100%" width="100%"/>
<div class="card-bottom">
<p class="h4 m-0 mt-2 text-center">Go out for a meal</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<img src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fsites.psu.edu%2Fmeganalvarezrcl%2Fwp-content%2Fuploads%2Fsites%2F5598%2F2013%2F10%2Ffriends-eating-out.jpg&f=1&nofb=1" height="100%" width="100%"/>
<div class="card-bottom">
<p class="h4 m-0 mt-2 text-center">Night Life</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.heart.org%2F-%2Fmedia%2Faha%2Fh4gm%2Farticle-images%2Ffriends-dining-out.jpg&f=1&nofb=1" height="100%" width="100%"/>
<div class="card-bottom">
<p class="h4 m-0 mt-2 text-center">Zomato Gold</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="popular-locations">
<div class="container">
<div class="d-flex justify-content-center">
<p class="popular-heading">Popular locations in and around <span class="font-weight-bold">Kolkata</span></p>
</div>
<div class="row mt-4">
<div class="col-md-4">
<div class="d-flex align-items-center locations-div">
<p class="m-0 ml-3 h5">Park Street Area</p>
<i class="fa fa-arrow-right ml-auto mr-4"></i>
</div>
</div>
<div class="col-md-4">
<div class="d-flex align-items-center locations-div">
<p class="m-0 ml-3 h5">Sector 5, Salt Lake</p>
<i class="fa fa-arrow-right ml-auto mr-4"></i>
</div>
</div>
<div class="col-md-4">
<div class="d-flex align-items-center locations-div">
<p class="m-0 ml-3 h5">Ballygunge</p>
<i class="fa fa-arrow-right ml-auto mr-4"></i>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-md-4">
<div class="d-flex align-items-center locations-div">
<p class="m-0 ml-3 h5">Chinar Park</p>
<i class="fa fa-arrow-right ml-auto mr-4"></i>
</div>
</div>
<div class="col-md-4">
<div class="d-flex align-items-center locations-div">
<p class="m-0 ml-3 h5">Mukundapur</p>
<i class="fa fa-arrow-right ml-auto mr-4"></i>
</div>
</div>
<div class="col-md-4">
<div class="d-flex align-items-center locations-div">
<p class="m-0 ml-3 h5">Rashbehari</p>
<i class="fa fa-arrow-right ml-auto mr-4"></i>
</div>
</div>
</div>
</div>
</section>
<section id="get-zomato-app">
<div class="container">
<div class="row">
<div class="col-md-6 d-none d-md-flex">
<img src="https://b.zmtcdn.com/web/home/dining/2c17b1c302656ee6d434bff811442f8c1588271130.png" class="ml-auto" width="250px" height="400px"/>
</div>
<div class="col-md-6">
<p class="display-4 font-weight-bold mt-4">Get the Zomato App</p>
<p>We will send you a link, open it on your phone to download the app</p>
<div class="d-flex">
<input type="text" placeholder="Email" class="email-input"/>
<button class="btn btn-danger ml-2">Get App</button>
</div>
<p class="mt-3 text-muted">Download app from</p>
<div class="d-flex">
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fstatic.tildacdn.com%2Ftild3435-3430-4133-a362-346661346266%2FGoogle-Play-and-Appl.png&f=1&nofb=1" width="350px" height="60px"/>
</div>
</div>
</div>
</div>
</section>
</body>
</html>