-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (75 loc) · 2.95 KB
/
index.html
File metadata and controls
77 lines (75 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HungerGenie - Food Delivery</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<nav>
<a href="index.html" class="logo">
<img src="images/HungerGenie Logo.png" alt="Logo">
<span class="logo-text">HungerGenie</span>
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="restaurants.html">Restaurants</a>
<a href="products.html">Products</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact</a>
<a href="cart.html" class="cart-link"><i class="fas fa-shopping-cart"></i> Cart</a>
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle dark mode">
<i class="fas fa-moon"></i>
</button>
</div>
</nav>
</div>
</header>
<main>
<section class="hero">
<div class="container" style="display: contents;">
<div>
<h1>Delicious Food Delivered Fast & Fresh</h1>
<p>Order from your favorite restaurants and get meals delivered to your doorstep in minutes!</p>
<a href="restaurants.html" class="btn">Order Now</a>
</div>
<div class="hero-image">
<img src="images/delievery_guy.jpg" alt="Delivery">
</div>
</div>
</section>
<section class="features">
<div class="container">
<h2>Why Choose HungerGenie?</h2>
<div class="feature-grid">
<div class="feature">
<i class="fas fa-bolt"></i>
<h3>Lightning Fast</h3>
<p>30 minutes guaranteed!</p>
</div>
<div class="feature">
<i class="fas fa-leaf"></i>
<h3>Fresh & Healthy</h3>
<p>Best ingredients from trusted restaurants</p>
</div>
<div class="feature">
<i class="fas fa-headset"></i>
<h3>24/7 Support</h3>
<p>Always here to help you</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 HungerGenie. Delivering happiness, one meal at a time.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>