-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (46 loc) · 2.12 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
<!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="./images/favicon-32x32.png">
<link rel="stylesheet" href="/ping-coming-soon-page/style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<title>Ping coming soon page</title>
</head>
<body>
<header class="inner"><img src="/ping-coming-soon-page/images/logo.svg" alt=""></header>
<main class="inner wide-centered">
<h1 class="title"><span>We are launching</span> soon!</h1>
<p class="sub-title">Subscribe and get notified</p>
<form id="form" class="form-nofity" autocomplete="on" novalidate>
<input required type="email" name="user_email" id="email" aria-label="Email Address"
placeholder="Your email address.."
pattern='^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$'>
<button class="btn btn-blue" type="submit" name="button">Notify Me</button>
<small>Please provide a valid email address</small>
<p class="toast-success">Success. Great success! <br> Thank you</p>
</form>
<figure>
<img src="/ping-coming-soon-page/images/illustration-dashboard.png" alt="dashboard illustration">
</figure>
<footer class="footer">
<p class="socials">
<i class='bx bxl-facebook bx-sm bx-border-circle'></i>
<i class='bx bxl-twitter bx-sm bx-border-circle'></i>
<i class='bx bxl-instagram bx-sm bx-border-circle'></i>
</p>
<p class="copyright">
© Copyright Ping. All rights reserved.
</p>
<p class="att">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a
href="https://github.com/vimode/frontend-mentor-challenges">vimode</a>
</p>
</footer>
</main>
<script src="/ping-coming-soon-page/script.js"></script>
</body>
</html>