-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (43 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<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>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Sign-up form start -->
<div class="container">
<div class="left">
<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>
<label for="email">Email address</label>
<input type="email" placeholder="[email protected]">
<button type="submit">Subscribe to monthly newsletter</button>
</form>
</div>
<div class="right">
<img src="assets/images/illustration-sign-up-desktop.svg" alt="">
</div>
</div>
<!-- Sign-up form end -->
<!-- Success message start -->
<div class="container-2 hide">
<img src="assets/images/icon-success.svg" alt="">
<h1>Thanks for subscribing!</h1>
<p>A confirmation email has been sent to [email protected].
Please open it and click the button inside to confirm your subscription.</p>
<button>Dismiss message</button>
</div>
<!-- Success message end -->
<script src="index.js"></script>
</body>
</html>