-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.37 KB
/
index.html
File metadata and controls
42 lines (40 loc) · 1.37 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
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<title>Frontend Mentor | Newsletter sign-up form with success message</title>
<script src="index.js" defer></script>
</head>
<body>
<!-- Sign-up form start -->
<main id="main-container">
<header class="info-container">
<h1>Stay updated!</h1>
<p>Join 60,000+ product managers receiving monthly updates on:</p>
<ul>
<li>
<p>Product discovery and building what matters</p>
</li>
<li>
<p>Measuring to ensure updates are a success</p>
</li>
<li>
<p>And much more!</p>
</li>
</ul>
<form novalidate autocomplete="on" autofocus>
<label for="email">Email address</label>
<span aria-label="polite" class="email-error">Valid email required</span>
<input type="email" id="email" placeholder="email@company.com">
<button class="buttons" type="submit">Subscribe to monthly newsletter</button>
</form>
</header>
<footer class="img-container">
<img class="image-signup" src="./assets/images/illustration-sign-up-desktop.svg" alt="">
</footer>
</main>
</body>
</html>