forked from Malar77/Malar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 2.42 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Swiggy Clone</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<div class="logo">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/93/Swiggy_Logo.png" alt="Swiggy Logo">
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Order Food</a></li>
<li><a href="#">Offers</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Cart</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>Food Delivery at Your Doorstep</h1>
<p>Order from your favorite restaurants now!</p>
<button>Order Now</button>
</div>
</section>
<!-- Food Menu Section -->
<section class="menu">
<div class="container">
<h2>Popular Dishes</h2>
<div class="menu-items">
<div class="menu-item">
<img src="https://www.pngitem.com/pimgs/m/112-1124189_burger-png.png" alt="Burger">
<h3>Cheese Burger</h3>
<p>Rs 99</p>
<button>Add to Cart</button>
</div>
<div class="menu-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Chicken_Thali.jpg/800px-Chicken_Thali.jpg" alt="Chicken Thali">
<h3>Chicken Briyani</h3>
<p>Rs 149</p>
<button>Add to Cart</button>
</div>
<div class="menu-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Pizza_Hut_logo.svg/800px-Pizza_Hut_logo.svg.png" alt="Pizza">
<h3>Veg Pizza</h3>
<p>Rs 59</p>
<button>Add to Cart</button>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="container">
<p>© 2025 Swiggy Clone. All rights reserved.</p>
</div>
</footer>
</body>
</html>