-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwait_list.html
More file actions
36 lines (36 loc) · 1.38 KB
/
Copy pathwait_list.html
File metadata and controls
36 lines (36 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shorcut icon" href="./favicon.ico" type="image/x-favicon">
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
<script defer src="https://kit.fontawesome.com/9571898d36.js" crossorigin="anonymous"></script>
<script defer src="./script.js"></script>
<title>Wait List</title>
<style>
body{
background: #e8f0fe;
}
</style>
</head>
<body>
<main class="wait-main">
<h2>Join the Waitlist</h2>
<p>
Excited to see new features in action? Join the waitlist to stay updated on improvements and upcoming releases. Be the first to explore the latest enhancements while supporting my learning journey in HTML, CSS, and JavaScript.
</p>
<form>
<label for="email">Enter your email:</label><br>
<input type="email" id="email" name="email" placeholder="you@example.com" required><br>
<button type="submit">Join Waitlist</button>
</form>
</main>
</body>
</html>