-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (71 loc) · 2.31 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!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"
/>
<link
rel="shortcut icon"
href="./assets/images/favicon-32x32.png"
type="image/x-icon"
/>
<title>
Frontend Mentor | Newsletter sign-up form with success message
</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Sign-up form start -->
<div class="card" id="submit-card">
<div class="card-text">
<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="submit-form">
<label for="email-input" id="label-submit">Email Address</label>
<input
type="email"
name="email"
placeholder="[email protected]"
id="email-input"
autocomplete="on"
/>
<button class="btn" type="submit" id="subscrbing">
Subscribe to monthly newsletter
</button>
</form>
</div>
<img src="" id="bg-img" />
</div>
<!-- Sign-up form end -->
<!-- Success message start -->
<div class="success-msg" id="success-card">
<img src="./assets/images/icon-success.svg" alt="" />
<h1>Thanks for subscribing!</h1>
<p id="conf-msg">
A confirmation email has been sent to [email protected]. Please open
it and click the button inside to confirm your subscription.
</p>
<button id="dismiss" class="btn">Dismiss message</button>
</div>
<!-- Success message end -->
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Sameh El Zankalony</a>.
</div>
</body>
<script src="./app.js"></script>
</html>