-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
66 lines (63 loc) · 3.41 KB
/
about.html
File metadata and controls
66 lines (63 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - HungerGenie</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="page">
<div class="page-content">
<h1>About HungerGenie</h1>
<p>Welcome to HungerGenie! We connect hungry customers with their favorite restaurants, delivering delicious meals right to your doorstep.</p>
<p>Founded in 2023, our mission is to make food delivery fast, reliable, and affordable for everyone. We believe that great food should be accessible to all, and we're committed to making that happen.</p>
<h2 class="section-heading">Our Story</h2>
<p>HungerGenie was founded by a group of foodies who were tired of waiting for hours for their favorite meals to arrive. We saw an opportunity to revolutionize the food delivery industry by leveraging technology and our passion for great food.</p>
<h2 class="section-heading">Our Values</h2>
<div class="about-grid">
<div class="about-card">
<h3>Speed</h3>
<p>30-minute delivery guarantee or your money back. We prioritize getting your food to you hot and fresh.</p>
</div>
<div class="about-card">
<h3>Quality</h3>
<p>We partner only with top-rated restaurants that meet our strict quality standards. Your satisfaction is our priority.</p>
</div>
<div class="about-card">
<h3>Affordability</h3>
<p>Best prices with exclusive discounts and offers. We believe great food shouldn't break the bank.</p>
</div>
</div>
<p class="closing-message">
At HungerGenie, we're not just delivering food—we're delivering happiness. Join thousands of satisfied customers who trust us for their daily meals.
</p>
</div>
</section>
</main>
<script src="./script.js"></script>
</body>
</html>