-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (85 loc) · 2.89 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
<!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="css/normalize.css" />
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Frontend Mentor | Ping coming soon page</title>
</head>
<body>
<div class="ping">
<div class="d-flex flex-column justify-content-center align-items-center">
<header class="ping__header">
<h2>PING<span class="color-blue">.</span></h2>
</header>
<div class="d-flex flex-column justify-content-center">
<div class="text-center">
<h1 class="m-0">
<span class="color-gray ping__alert">We are launching</span> soon!
</h1>
</div>
<div class="text-center">
<p>Subscribe and get notified</p>
</div>
<form
id="pingForm"
onsubmit="onFormSubmit(event)"
class="text-center ping__form d-flex"
>
<div class="ping__form-control">
<input
id="userEmail"
class="ping-box-shadow"
type="email"
placeholder="Your email address..."
/>
</div>
<div class="ping__form-control">
<button class="btn ping-box-shadow" type="submit">
Notify Me
</button>
</div>
</form>
</div>
<div class="ping__dashboard text-center">
<img alt="ping-dashboard" src="images/illustration-dashboard.png" />
</div>
<footer class="ping__footer text-center color-gray">
<d-flex class="flex-row align-items-center justify-content-center">
<a href="#" class="ping__social_media ping-box-shadow"
><i class="fab fa-facebook-f"></i
></a>
<a href="#" class="ping__social_media ping-box-shadow">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="ping__social_media ping-box-shadow"
><i class="fab fa-instagram"></i
></a>
</d-flex>
<div><small>© Copyright Ping. All rights reserved.</small></div>
<p class="attribution">
Challenge by
<a
href="https://www.frontendmentor.io?ref=challenge"
target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Sumant Kumbhar</a>.
</p>
</footer>
</div>
</div>
<script
src="https://kit.fontawesome.com/5e8cd47f25.js"
crossorigin="anonymous"
></script>
</body>
</html>