-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (28 loc) · 857 Bytes
/
index.html
File metadata and controls
37 lines (28 loc) · 857 Bytes
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>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Form Validation</title>
</head>
<body>
<main>
<h1>Stay Updated!</h1>
<p>Join 60,000+ product managers receiving monthly updates on:</p>
<ul>
<li>Product discovery and building what matters</li>
<li>Measuring to ensure updates are a success</li>
<li>Add much more</li>
</ul>
<form class="form">
<label for="email">Email Address:</label>
<div class="error"></div>
<input type="email" name="email" id="email">
<input type="submit" value="Subscribe to Monthly Newsletter" class="btn">
<div class="success"></div>
</form>
</main>
<script src="script.js"></script>
</body>
</html>