forked from Biplab-313/hacktoberfest-2024.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (52 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zomato - Order food online</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<img src="logo.png" alt="">
</div>
<ul>
<li><a href="investor.html">Investor Relations</a></li>
<li><a href="">Add restaurant</a></li>
<li><a href="">Login</a></li>
<li><a href="">Signup</a></li>
</ul>
</header>
<main>
<section>
<!-- use img/bg.png as background -->
<img src="logo.png" alt="">
<p>Discover the best food & drinks in Hanumangarh</p>
<input placeholder="Search for restaurant, cuisine or a dish">
</section>
<section>
<h2>Why Choose Us for Food Delivery?</h2>
<p>We make it easy to discover and enjoy delicious food, wherever you are.</p>
<div class="main-features">
<div class="feature">
<h3>Fast Delivery</h3>
<p>Our reliable delivery partners ensure your food reaches you in no time.</p>
</div>
<div class="feature">
<h3>Variety of Choices</h3>
<p>From local favorites to global cuisines, we offer a wide range of options to choose from.</p>
</div>
<div class="feature">
<h3>Easy Payment</h3>
<p>Pay seamlessly through multiple payment options, including cash on delivery.</p>
</div>
</div>
</section>
</main>
<footer>
Copyright © 2024 | All rights reserved
</footer>
<script src="script.js"></script>
</body>
</html>