-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (88 loc) · 3.72 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!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="stylesheet" href="styles/styles.css">
<title>Frontend Mentor | Newsletter sign-up form with success message</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<div class="outer">
<div class="middle">
<div class="inner">
<div id="grid-container"class="grid-container">
<div class="grid-item panel-left">
<!-- Sign-up form start -->
<h1>Stay updated!</h1>
<p>Join 60,000+ product managers receiving monthly updates on:</p>
<div class="list-container">
<div class="list">
<div class="item-container">
<img class=list-icon src="assets/images/icon-list.svg">
<p>Product discovery and building what matters</p>
</div>
<div class="item-container">
<img class=list-icon src="assets/images/icon-list.svg">
<p>Measuring to ensure updates are a success</p>
</div>
<div class="item-container">
<img class=list-icon src="assets/images/icon-list.svg">
<p>And much more!</p>
</div>
</div>
</div>
<form name="newsltr-form"class="email-form" onsubmit="event.preventDefault(); return submitForm()" method="post">
<label type="title" id="title-label"for="em-box">Email address</label>
<label type="title" id="error-label" for="em-box">Valid email required</label>
<input type="text" id="em-box" name="emailbox" onmouseleave="mouseUp()" placeholder="email@company.com">
<input type="submit" value="Subscribe to monthly newsletter">
</form>
<!-- Sign-up form end -->
</div>
<div class="grid-item panel-right">
<img class="img-banner desktop-img" src="assets/images/illustration-sign-up-desktop.svg">
<div>
<img class="img-banner mobile-img" src="assets/images/illustration-sign-up-mobile.svg"></div>
</div>
</div>
<div id="submit-page"class="submit-page">
<!-- Success message start -->
<div>
<img class="success-icon" src="assets/images/icon-success.svg">
</div>
<div>
<h2>Thanks for subscribing!</h2>
<p>
A confirmation email has been sent to <b>ash@loremcompany.com.</b>
Please open it and click the button inside to confirm your subscription.
</p>
</div>
<div class="btn-container">
<form>
<input type="submit" class="dismiss-btn" value="Dismiss message">
</form>
</div>
<!-- Success message end -->
</div>
<!-- <div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div> -->
</div>
</div>
</div>
</body>
<script src="javascript/index.js"></script>
</html>