-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (75 loc) · 2.95 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Recipe App</title>
<link rel="stylesheet" href="../assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation Menu -->
<header class="main-header">
<nav class="navbar">
<h1 class="logo">FoodieDelights</h1>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#recipes">Recipes</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="./login.html" class="login-btn">Login</a></li>
</ul>
</nav>
</header>
<!-- Parallax Hero Section -->
<section id="home" class="hero-section">
<div class="hero-text">
<h2>Welcome to FoodieDelights</h2>
<p>Your one-stop destination for delicious recipes and culinary inspiration.</p>
<a href="#recipes" class="cta-btn">Explore Recipes</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="about-section">
<h2>About Us</h2>
<p>
At FoodieDelights, we are passionate about bringing people together through the love of food.
Discover recipes, share your own, and connect with a community of food enthusiasts.
</p>
</section>
<!-- Recipes Section -->
<section id="recipes" class="recipes-section">
<h2>Our Featured Recipes</h2>
<div class="recipe-grid">
<div class="recipe-card">
<h3>Spaghetti Carbonara</h3>
<p>A classic Italian pasta dish with a creamy twist.</p>
</div>
<div class="recipe-card">
<h3>Chicken Tikka Masala</h3>
<p>A savory and spicy Indian favorite.</p>
</div>
<div class="recipe-card">
<h3>Vegetable Stir Fry</h3>
<p>Healthy, colorful, and absolutely delicious.</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2024 FoodieDelights. All rights reserved.</p>
</footer>
</body>
</html>