-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<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" />
<title>Frontend Mentor | Ping coming soon page</title>
</head>
<body>
<main>
<img class="logo" src="./images/logo.svg" alt="" />
<section class="content">
<h1>We are launching <span>soon!</span></h1>
<p>Subscribe and get notified<p>
<form action="">
<input type="email" name="email" id="email" placeholder="Your email address..." />
<p class="error-text">Please provide a valid email address</p>
<button type="submit">Notify Me</button>
</form>
<img src="./images/illustration-dashboard.png" alt="dashboard image" />
</section>
</main>
<footer>
<section class="social-icons">
<ion-icon size="large" name="logo-facebook"></ion-icon>
<ion-icon size="large" name="logo-twitter"></ion-icon>
<ion-icon size="large" name="logo-instagram"></ion-icon>
</section>
<p>© Copyright Ping. All rights reserved.</p>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by
<a href="#">Shubham Saurabh</a>.
</p>
</footer>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="./script.js"></script>
</body>
</html>