-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (52 loc) · 2.08 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
<!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 href="https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | Ping coming soon page</title>
</head>
<body>
<main class="main">
<!-- Header Section -->
<header class="header">
<h1>PING<span>.</span></h1>
<h2>We are launching <span class="soon">soon!</span></h2>
<p>Subscribe and get notified</p>
</header>
<!-- Form Section -->
<form id="form">
<div class="form">
<div class="form-control">
<div><input class="form__email" title='email' type="text" id="email" placeholder="Your email adress..." />
<div><small>Error message</small></div>
</div>
</div>
<div><button type="submit" class="form__button">Notify Me </button></div>
</div>
</form>
<!-- Dashboard Image Section -->
<div class="dashboard">
<img class="dashboard__image" src="images/illustration-dashboard.png" alt="Preview PING Dashboard" />
</div>
<!-- Social Icons Section -->
<div class="social__images-container">
<div class="social__image-container">
<img class="social__social-image" src="images/logo-facebook.svg" alt="Facebook Logo"></div>
<div class="social__image-container">
<img class="social__social-image" src="images/logo-twitter.svg" alt="Twitter Logo"></div>
<div class="social__image-container">
<img class="social__social-image" src="images/logo-instagram.svg" alt="Instagram Logo"></div>
</div>
<!-- Copyright Section -->
<div class="copyright">
<p>© Copyright Ping. All rights reserved.</p>
</div>
</main>
</body>
<!-- Load Script -->
<script src="script.js"> </script>
</html>