This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
60 lines (51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Ping coming soon page - Frontend Mentor">
<meta name="keywords" content="Ping coming soon page, Frontend Mentor">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Ping coming soon page</title>
</head>
<body>
<!-- Main Container -->
<main>
<!-- Header Logo -->
<div class="header-logo"></div>
<!-- Title Section -->
<article class="title-section">
<h1>We are launching <span class="soon">soon!</span></h1>
<p class="title-info">Subscribe and get notified</p>
</article>
<!-- Input Section -->
<article class="input-section">
<section class="input-block">
<input id="email-input" class="email-input" type="email" placeholder="Your email address..">
<label for="email-input" class="email-input-message"></label>
</section>
<button class="submit-btn">Notify Me</button>
</article>
<article>
<!-- Statistics IMG-->
<div class="statistics-img"></div>
</article>
</main>
<!-- Footer -->
<footer>
<!-- Social Media -->
<section class="social-media">
<a href="https://www.facebook.com/" target="_blank" class="facebook"><i class="fa-brands fa-facebook-f"></i></a>
<a href="https://twitter.com/" target="_blank" class="twitter"><i class="fa-brands fa-twitter"></i></a>
<a href="https://www.instagram.com/" target="_blank" class="instagram"><i class="fa-brands fa-instagram"></i></a>
</section>
<!-- Copyright -->
<p class="copyright"> © Copyright Ping. All rights reserved.</p>
</footer>
<script src="app.js"></script>
</body>
</html>