-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (66 loc) · 2.35 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
<!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="style.css">
</head>
<body>
<!-- Sign-up form start -->
<main class="form-sign">
<div class="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>
<label for="email">Email address</label>
<input type="email" placeholder="email@company.com" id="email" required>
<button type="submit">Subscribe to monthly newsletter</button>
</form>
</div>
<div class="img">
<img src="assets/images/illustration-sign-up-desktop.svg" alt="">
</div>
</div>
</main>
<!-- Sign-up form end -->
<!-- Success message start -->
<div class="success hide">
<div class="success-content">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
<defs>
<linearGradient id="a" x1="100%" x2="0%" y1="0%" y2="100%">
<stop offset="0%" stop-color="#FF6A3A" />
<stop offset="100%" stop-color="#FF527B" />
</linearGradient>
</defs>
<g fill="none">
<circle cx="32" cy="32" r="32" fill="url(#a)" />
<path stroke="#FFF" stroke-width="4" d="m18.286 34.686 8.334 7.98 19.094-18.285" />
</g>
</svg>
</span>
<div class="success-title">
<h1>Thanks for subscribing!</h1>
</div>
<div class="success-p">
</div>
<button type="submit" onclick="backToForm()">Dismiss message</button>
</div>
</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="https://github.com/MohamedKhamisMostafa">Mohamed Khamis♥️</a>.
</div>
<script src="code.js"></script>
</body>
</html>