-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.4 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
<!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">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="newsletter">
<h1>Stay Updated!</h1>
<div class="join">
<h2>Join to receive monthly updates on:</h2>
<ul>
<li>Product discovery and building what matters</li>
<li>Measuring to ensure updates are a success</li>
<li>And much more!</li>
</ul>
</div>
<div class="form">
<form name="newsletter-signup">
<div class="extra">
<label for="email">Email Address</label>
<p class="incorrect"></p>
</div>
<input type="email" id="email" name="email" placeholder="email@google.com" required/>
</form>
</div>
<div class="button">
<button type="button" class="subscribe">Subscribe to monthly newsletter</button>
</div>
</div>
<div class="coolio">
<img src="https://img.freepik.com/free-vector/e-mail-marketing-set-icons_24877-51326.jpg?w=740&t=st=1693138272~exp=1693138872~hmac=c09538cb6cf69d1d02f151c6baf49019a1242f3888c3ebf16a0f59cfbbe11de9" alt="Newsletter Icon" loading="lazy"/>
</div>
</div>
<script src="script.js"></script>
</body>
</html>