-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (67 loc) · 3.43 KB
/
Copy pathindex.html
File metadata and controls
81 lines (67 loc) · 3.43 KB
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
<!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>Mohaymenul Islam . Frontend Mentor | newsletter. JavaScript</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="d-flex align-items-center justify-content-center blue_bg ">
<div class="container ">
<div id="main" class="row bg-light align-items-center p-lg-4 p-0 rounded-4 gx-0 ">
<div class="col-md-6 col-12 mt-lg-0 mt-3 gx-5">
<h1 class="fw-bold title display-5">Stay updated!</h1>
<p>Join 60,000+ product managers receiving monthly updates on:</p>
<ul class="list-group-flush ps-0 ">
<li class="list-group-item py-1 ">
<img src="assets/images/icon-list.svg" alt="list" class="me-2">
Product discovery and building what matters
</li>
<li class="list-group-item py-2">
<img src="assets/images/icon-list.svg" alt="list" class="me-2">
Measuring to ensure updates are a success
</li>
<li class="list-group-item py-2 ">
<img src="assets/images/icon-list.svg" alt="list" class="me-2">
And much more!
</li>
</ul>
<form>
<div class="mb-3">
<label for="email" class="form-label fw-bold small mt-3"> Email address </label>
<input type="email" class="form-control form-control-lg " id="email" placeholder="email@company.com">
<button id="subscribe" type="submit" class="btn btn-dark w-100 mt-3 fw-bold p-2 mt-4 mb-4 pt-3 pb-3">Subscribe to
monthly newsletter</button>
</div>
</form>
</div>
<!-- ======================================== -->
<div class=" col-md-6 col-12 img_mobile_container">
<img src="assets/images/illustration-sign-up-desktop.svg" alt="svg" class="img-fluid">
</div>
</div>
<!-- Success message start -->
<div id="success" class="d-none success_style p-5 rounded-4 ">
<img src="assets/images/icon-success.svg" alt="">
<h2 class="mt-3">Thanks for subscribing!</h2>
<p>A confirmation email has been sent to <span class="fw-bold ">ash@loremcompany.com</span>.
Please open it and click the button inside to confirm your subscription.
</p>
<button id="dismiss" class="btn w-100 btn-dark pt-3 pb-3 ">Dismiss message</button>
</div>
<!-- Success message end -->
</div>
</main>
<footer class="attribution text-center mt-0 ">
<p class="ftr">Challenge by <a class="text-decoration-none h6 " href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor.</a> Coded by:</p>
<a class="text-decoration-none h3 pb-3" href="https://nayem.pw" target="_blank">Mohaymenul Islam</a>
</footer>
<!-- Bootstrap CDN JS -->
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> -->
<script src="script.js"></script>
</body>
</html>