valley-commons/index.html

39 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valley of the Commons</title>
<link rel="stylesheet" href="styles.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=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1>Valley of the Commons</h1>
<p class="tagline">Coming Soon</p>
</header>
<main>
<p class="description">
A space for collaborative stewardship and shared abundance.
</p>
<div class="signup">
<p>Stay updated on our progress:</p>
<form class="email-form" action="#" method="post">
<input type="email" placeholder="your@email.com" required>
<button type="submit">Notify Me</button>
</form>
</div>
</main>
<footer>
<p>&copy; 2025 Valley of the Commons</p>
</footer>
</div>
</body>
</html>