├── images ├── item1.png ├── item2.png ├── item3.png ├── item4.png ├── logo.png ├── appleStore.png ├── playStore.png ├── collection1.jpg ├── collection2.jpg ├── collection3.jpg ├── collection4.jpg ├── mobileBanner.png ├── heroSectionLogo.png └── heroSectionBackground.png ├── README.md ├── index.html └── styles.css /images/item1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/item1.png -------------------------------------------------------------------------------- /images/item2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/item2.png -------------------------------------------------------------------------------- /images/item3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/item3.png -------------------------------------------------------------------------------- /images/item4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/item4.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/appleStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/appleStore.png -------------------------------------------------------------------------------- /images/playStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/playStore.png -------------------------------------------------------------------------------- /images/collection1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/collection1.jpg -------------------------------------------------------------------------------- /images/collection2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/collection2.jpg -------------------------------------------------------------------------------- /images/collection3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/collection3.jpg -------------------------------------------------------------------------------- /images/collection4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/collection4.jpg -------------------------------------------------------------------------------- /images/mobileBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/mobileBanner.png -------------------------------------------------------------------------------- /images/heroSectionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/heroSectionLogo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This is a zomato landing page clone 2 | 3 | Zomato-landing-page-10722 4 | aditya12gusain 5 | 6 | This is a new SETUP Branch 7 | -------------------------------------------------------------------------------- /images/heroSectionBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya12gusain/zomato-landing-page-10722/HEAD/images/heroSectionBackground.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 13 | 14 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 | Zomato Clone 33 | 34 | 35 |
36 |
37 | 49 |
50 | 51 |
52 | 57 |

58 | Discover the best food & drinks in Delhi NCR 59 |

60 |
61 | 66 | 71 |
72 |
73 |
74 | 75 |
76 |
77 | 78 |
79 |

Order Online

80 |

Stay home and order to your doorstep

81 |
82 |
83 | 84 |
85 | 86 |
87 |

Dining

88 |

View the city's favourite dining venue

89 |
90 |
91 | 92 |
93 | 94 |
95 |

Nightlife and Clubs

96 |

Explore the city's top nightlife outlets

97 |
98 |
99 |
100 | 101 |
102 |

Collections

103 | 104 |
105 | Explore curated lists of top restaurants, cafes, pubs, and barsin 107 | Delhi NCR, based on trends 109 | All collections in Delhi NCR 110 |
111 | 112 |
113 |
114 |
115 |
116 |

Live Cricket Screening

117 | 58 Places 118 |
119 |
120 | 121 |
122 |
123 |
124 |

Ramadan Special

125 | 22 Places 126 |
127 |
128 | 129 |
130 |
131 |
132 |

Newly Opened

133 | 100 Places 134 |
135 |
136 | 137 |
138 |
139 |
140 |

Trending This Week

141 | 30 Places 142 |
143 |
144 |
145 |
146 | 147 |
148 |
149 |
150 | 151 |
152 |
153 |

Get the Zomato App

154 |

155 | We will send you a link, open it on your phone to download the app. 156 |

157 |
158 |
159 | 160 | 161 |
162 |
163 | 164 | 165 |
166 |
167 |
168 | 169 | 170 |
171 |
172 |
Download App From
173 |
174 | 175 | 176 |
177 |
178 |
179 |
180 |
181 | 182 | 260 | 261 | 262 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | font-family: "Poppins", sans-serif; 6 | } 7 | 8 | .hero__section { 9 | background: url(images/heroSectionBackground.png); 10 | background-size: cover; 11 | background-position: center; 12 | color: white; 13 | min-height: 60vh; 14 | } 15 | 16 | .navbar { 17 | display: flex; 18 | align-items: center; 19 | justify-content: space-between; 20 | height: 60px; 21 | padding: 16px 48px; 22 | } 23 | 24 | .navbar a { 25 | text-decoration: none; 26 | color: white; 27 | } 28 | 29 | .navbar__menu_container { 30 | display: flex; 31 | gap: 20px; 32 | } 33 | 34 | .navbar__menu_container .user__icon { 35 | height: 30px; 36 | width: 30px; 37 | align-items: center; 38 | justify-content: center; 39 | border-radius: 100%; 40 | border: solid 1px white; 41 | display: none; 42 | } 43 | 44 | .hero__section_container { 45 | display: flex; 46 | flex-direction: column; 47 | align-items: center; 48 | justify-content: center; 49 | gap: 32px; 50 | height: calc(60vh - 60px); 51 | } 52 | 53 | .hero__section_logo { 54 | width: 220px; 55 | height: auto; 56 | } 57 | 58 | .hero__section_title { 59 | text-align: center; 60 | font-size: 30px; 61 | font-weight: 400; 62 | } 63 | 64 | .hero__section_input_container { 65 | background-color: white; 66 | padding: 10px; 67 | display: flex; 68 | align-items: center; 69 | justify-items: center; 70 | gap: 10px; 71 | width: 60%; 72 | border-radius: 10px; 73 | } 74 | 75 | .input_container_location, 76 | .input_container_search { 77 | padding: 5px; 78 | border: none; 79 | outline: none; 80 | } 81 | 82 | .input_container_location { 83 | width: 35%; 84 | border-right: 2px solid #e0e0e0; 85 | } 86 | 87 | .input_container_search { 88 | width: 65%; 89 | } 90 | 91 | @media only screen and (max-width: 600px) { 92 | .navbar__menu_container .user__icon { 93 | display: flex; 94 | } 95 | 96 | .link { 97 | display: none; 98 | } 99 | 100 | .navbar { 101 | padding: 16px; 102 | } 103 | 104 | .hero__section { 105 | min-height: 80vh; 106 | } 107 | 108 | .hero__section_input_container { 109 | flex-direction: column; 110 | background-color: transparent; 111 | width: 100%; 112 | } 113 | 114 | .input_container_location, 115 | .input_container_search { 116 | padding: 15px; 117 | border-radius: 10px; 118 | width: 95%; 119 | } 120 | 121 | .hero__section_container { 122 | height: calc(80vh - 60px); 123 | } 124 | 125 | .hero__section_title { 126 | font-size: 20px; 127 | width: 95%; 128 | } 129 | } 130 | 131 | .container { 132 | margin: 3rem auto; 133 | width: 90%; 134 | } 135 | 136 | .we__offer { 137 | display: flex; 138 | flex-wrap: wrap; 139 | gap: 1rem; 140 | align-items: center; 141 | justify-content: center; 142 | } 143 | 144 | .we__offer_card { 145 | border-radius: 10px; 146 | overflow: hidden; 147 | border: 1px solid #e0e0e0; 148 | transition: all 0.3s ease; 149 | } 150 | 151 | .we__offer_card:hover { 152 | transform: scale(1.05); 153 | } 154 | 155 | .we__offer_card img { 156 | width: 100%; 157 | height: 160px; 158 | object-fit: cover; 159 | object-position: center; 160 | } 161 | 162 | .we__offer_content { 163 | padding: 10px; 164 | } 165 | 166 | .we__offer_content h2 { 167 | font-size: 20px; 168 | font-weight: 400; 169 | } 170 | 171 | .we__offer_content p { 172 | font-size: 12px; 173 | } 174 | 175 | .collections h1 { 176 | font-weight: 600; 177 | } 178 | 179 | .collections .sub__heading_container { 180 | font-size: 15px; 181 | display: flex; 182 | align-items: center; 183 | justify-content: space-between; 184 | flex-wrap: wrap; 185 | gap: 1rem; 186 | } 187 | 188 | .sub__heading_container span:nth-child(2) { 189 | color: #ff7e8b; 190 | font-size: 13px; 191 | cursor: pointer; 192 | } 193 | 194 | .collections_card_container { 195 | display: flex; 196 | align-items: center; 197 | justify-content: center; 198 | flex-wrap: wrap; 199 | gap: 0.5rem; 200 | margin-top: 1.5rem; 201 | } 202 | 203 | .collections_card_container .card { 204 | height: 300px; 205 | min-width: 240px; 206 | background-size: cover; 207 | background-position: center; 208 | border-radius: 10px; 209 | position: relative; 210 | } 211 | 212 | .card1 { 213 | background-image: url("images/collection1.jpg"); 214 | } 215 | 216 | .card2 { 217 | background-image: url("images/collection2.jpg"); 218 | } 219 | 220 | .card3 { 221 | background-image: url("images/collection3.jpg"); 222 | } 223 | 224 | .card4 { 225 | background-image: url("images/collection4.jpg"); 226 | } 227 | 228 | .overlay { 229 | width: 100%; 230 | height: 100%; 231 | position: absolute; 232 | top: 0; 233 | left: 0; 234 | border-radius: 10px; 235 | background: linear-gradient( 236 | 0deg, 237 | rgba(0, 0, 0, 0.8) 0%, 238 | rgba(0, 0, 0, 0.05) 50%, 239 | rgba(0, 0, 0, 0.05) 85% 240 | ); 241 | z-index: 5; 242 | } 243 | 244 | .collections_card_container .card .content { 245 | position: absolute; 246 | bottom: 0; 247 | left: 0; 248 | color: white; 249 | padding: 12px 16px; 250 | font-size: 0.9rem; 251 | z-index: 6; 252 | } 253 | 254 | .content h4 { 255 | font-weight: 400; 256 | letter-spacing: 0.5px; 257 | } 258 | 259 | .get__the_app { 260 | display: flex; 261 | align-items: center; 262 | justify-content: center; 263 | background-color: rgb(255, 251, 247); 264 | width: 100%; 265 | padding: 3rem 6rem; 266 | } 267 | 268 | .get__the_app .semiContainer { 269 | width: 60%; 270 | display: flex; 271 | justify-content: center; 272 | align-items: center; 273 | flex-wrap: wrap; 274 | gap: 1.5rem; 275 | } 276 | 277 | .get__the_app .semiContainer .left { 278 | flex: 2; 279 | } 280 | 281 | .get__the_app .semiContainer .left img { 282 | width: 100%; 283 | object-fit: cover; 284 | object-position: center; 285 | } 286 | 287 | .get__the_app .semiContainer .right { 288 | flex: 3; 289 | height: 100%; 290 | display: flex; 291 | flex-direction: column; 292 | gap: 1rem; 293 | } 294 | 295 | .right h1 { 296 | font-weight: 400; 297 | font-size: 2rem; 298 | } 299 | 300 | .right p { 301 | font-size: 0.8rem; 302 | } 303 | 304 | .semiContainer .right .radio__buttons_container { 305 | display: flex; 306 | align-items: center; 307 | gap: 1rem; 308 | } 309 | 310 | .semiContainer .right .radio__buttons_container div { 311 | display: flex; 312 | align-items: center; 313 | justify-content: center; 314 | gap: 10px; 315 | } 316 | 317 | .right .radio__buttons_container div input { 318 | height: 15px; 319 | width: 15px; 320 | accent-color: rgb(239, 79, 95); 321 | } 322 | 323 | .semiContainer .right .input_container { 324 | display: flex; 325 | gap: 0.5rem; 326 | } 327 | 328 | .input_container { 329 | flex-wrap: wrap; 330 | } 331 | 332 | .input_container button, 333 | .input_container input { 334 | padding: 10px 12px; 335 | } 336 | 337 | .input_container input { 338 | flex: auto; 339 | border: 1.5px solid gray; 340 | outline: none; 341 | border-radius: 5px; 342 | } 343 | 344 | .input_container button { 345 | border: none; 346 | background-color: rgb(239, 79, 95); 347 | color: white; 348 | border-radius: 5px; 349 | cursor: pointer; 350 | } 351 | 352 | .right .download__app_container { 353 | display: flex; 354 | flex-direction: column; 355 | gap: 0.7rem; 356 | } 357 | 358 | .download__app_container h5 { 359 | font-weight: 400; 360 | color: gray; 361 | } 362 | 363 | .download__app_container div { 364 | display: flex; 365 | gap: 1rem; 366 | } 367 | 368 | .download__app_container div img { 369 | width: 35%; 370 | } 371 | 372 | @media only screen and (max-width: 1300px) { 373 | .get__the_app .semiContainer .left, 374 | .get__the_app .semiContainer .right { 375 | flex: 1; 376 | } 377 | 378 | .get__the_app .semiContainer { 379 | width: 80%; 380 | } 381 | } 382 | 383 | @media only screen and (max-width: 900px) { 384 | .get__the_app { 385 | padding: 2rem; 386 | } 387 | 388 | .get__the_app .semiContainer { 389 | width: 90%; 390 | } 391 | } 392 | 393 | @media only screen and (max-width: 700px) { 394 | .get__the_app { 395 | padding: 3rem 0; 396 | } 397 | 398 | .get__the_app .semiContainer { 399 | width: 80%; 400 | flex-direction: column; 401 | } 402 | } 403 | 404 | .footer { 405 | width: 100%; 406 | } 407 | 408 | .footer_section1 { 409 | display: flex; 410 | align-items: center; 411 | justify-content: space-between; 412 | width: 90%; 413 | margin: auto; 414 | flex-wrap: wrap; 415 | gap: 2.5rem; 416 | } 417 | 418 | .footer_section1 img { 419 | width: 120px; 420 | } 421 | 422 | .section1__buttonContainer { 423 | display: flex; 424 | gap: 1rem; 425 | } 426 | 427 | .section1__buttonContainer button { 428 | padding: 5px 5px; 429 | width: 90px; 430 | border: 1px solid gray; 431 | background-color: transparent; 432 | border-radius: 5px; 433 | display: flex; 434 | align-items: center; 435 | justify-content: center; 436 | gap: 10px; 437 | cursor: pointer; 438 | } 439 | 440 | .navigation_container { 441 | display: grid; 442 | grid-template-columns: repeat(5, 1fr); 443 | width: 90%; 444 | margin: auto; 445 | gap: 1rem; 446 | padding: 3rem 0; 447 | } 448 | 449 | .link__container { 450 | display: flex; 451 | flex-direction: column; 452 | gap: 5px; 453 | } 454 | 455 | .link__container h5 { 456 | font-weight: 500; 457 | font-size: 15px; 458 | margin-bottom: 5px; 459 | letter-spacing: 0.8px; 460 | } 461 | 462 | .footer__link { 463 | text-decoration: none; 464 | color: gray; 465 | font-size: 13px; 466 | font-weight: 300; 467 | } 468 | 469 | .footer__link:hover { 470 | color: black; 471 | } 472 | 473 | .social__links_container { 474 | display: flex; 475 | gap: 0.5rem; 476 | } 477 | 478 | .social__links_container button { 479 | background-color: black; 480 | border: none; 481 | width: 25px; 482 | height: 25px; 483 | border-radius: 30px; 484 | display: flex; 485 | justify-content: center; 486 | align-items: center; 487 | cursor: pointer; 488 | } 489 | 490 | .social__links_container button i { 491 | color: white; 492 | font-size: 13px; 493 | } 494 | 495 | .footer__section_logos { 496 | width: 100%; 497 | } 498 | 499 | .disclamer { 500 | width: 90%; 501 | margin: auto; 502 | color: gray; 503 | font-size: 12px; 504 | border-top: 1px solid gray; 505 | padding-top: 1.5rem; 506 | } 507 | 508 | @media only screen and (max-width: 900px) { 509 | .navigation_container { 510 | grid-template-columns: repeat(3, 1fr); 511 | } 512 | } 513 | 514 | @media only screen and (max-width: 600px) { 515 | .navigation_container { 516 | grid-template-columns: 1fr 1fr; 517 | } 518 | } 519 | 520 | @media only screen and (max-width: 450px) { 521 | .navigation_container { 522 | grid-template-columns: 1fr; 523 | } 524 | } 525 | --------------------------------------------------------------------------------