-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Subscribe</title>
<link rel="stylesheet" href="screen.css?version=5">
</head>
<body>
<article>
<section>
<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>And much more!</li>
</ul>
<form id="subscribe" action="success.html" novalidate>
<label for="emailAddress">Email address</label>
<span class="fieldHint">Valid email required</span>
<input type="email" id="emailAddress" placeholder="email@company.com">
<button>Subscribe to monthly newsletter</button>
</form>
</section>
<div></div>
<footer>
<div>
Coded by <a href="http://github.com/redstar504">Brayden Williams</a>
for <a href="https://frontendmentor.io">Frontend Mentor</a>
</div>
</footer>
</article>
<script src="form.js"></script>
</body>
</html>