-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (63 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
69 lines (63 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>food++</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>food++</h1>
</div>
<ul>
<li><a href="#meals">meals</a></li>
<li><a href="#partners">Partners</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div>
<button onclick="alert('Login feature coming soon!')">Login</button>
<button onclick="alert('Signup feature coming soon!')">Sign Up</button>
</div>
</nav>
</header>
<section class="hero">
<h1>Save on Delicious Meals</h1>
<p>Get food from your favorite restaurants at a fraction of the price.</p>
<input type="text" id="searchInput" placeholder="Search restaurants near you...">
<button onclick="searchRestaurants()">Search</button>
</section>
<section class="meals" id="meals">
<h2>Discounted Meals</h2>
<div id="mealsContainer">
<!-- Meals will be dynamically generated here -->
</div>
</section>
<section class="partners" id="partners">
<h2>Our Restaurant Partners</h2>
<ul>
<li>Italian Restaurant</li>
<li>Mexican Delight</li>
<li>Green Bistro</li>
<li>Burger Town</li>
<li>Sushi Express</li>
</ul>
</section>
<section class="cta">
<h2>Don’t Miss Out!</h2>
<p>Join us in reducing food waste while enjoying great meals at low prices.</p>
<button onclick="alert('Explore more feature coming soon!')">Explore More</button>
</section>
<footer id="contact">
<p>Contact Us: info@food++.com</p>
<ul>
<li><a href="#">Facebook</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Twitter</a></li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>