-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.52 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Garden of Grapes</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Garden of Grapes</h1>
</header>
<main id="main-content">
<div id="subscription-section">
<h2>Discover Delicious Grape-Inspired Recipes!</h2>
<p>Join our community and receive exclusive updates on our latest grape-infused cookbook releases.</p>
<form id="subscription-form">
<input type="text" id="name" name="name" placeholder="Enter your name" required>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
</form>
</div>
<div id="thank-you-section" style="display: none;">
<h2>Thank You for Subscribing!</h2>
<p>We're excited to have you join our community. You'll soon receive our latest grape-inspired recipes and updates.</p>
<button id="return-home">Return to Home</button>
</div>
</main>
<footer>
<p>© 2024 Garden of Grapes. All rights reserved.</p>
<p><a href="view_subscribers.html">View Subscribers</a></p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>