2020-09-03 00:16:21 +02:00
|
|
|
<!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">
|
2020-09-06 12:27:32 +02:00
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="css/style.css">
|
2020-09-03 00:16:21 +02:00
|
|
|
|
|
|
|
<title>Frontend Mentor | Ping coming soon page</title>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-09-06 13:24:44 +02:00
|
|
|
<header>
|
|
|
|
<div class="logoSection"></div>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<div class="titleSection">
|
|
|
|
<p class="line1">We are launching <b>soon!</b></p>
|
|
|
|
<p class="line2">Subscribe and get notified</p>
|
|
|
|
</div>
|
|
|
|
<div class="formSection">
|
|
|
|
<form action="submit">
|
|
|
|
<input type="email" name="emailInput" id="emailInput" placeholder="Your email address...">
|
|
|
|
<button>Notify Me</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="imageSection">
|
|
|
|
<img src="./images/illustration-dashboard.png" alt="Illustration of the dashboard" class="mockupImage">
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<div class="socialButtonsSection">
|
|
|
|
<a href="https://facebook.com/tarasis"><i class="fab fa-facebook-f"></i></a>
|
|
|
|
<a href="https://twitter.com/tarasis"><i class="fab fa-twitter"></i></a>
|
|
|
|
<a href="https://www.instagram.com/tarasis/"><i class="fab fa-instagram"></i></a>
|
|
|
|
</div>
|
2020-09-03 00:16:21 +02:00
|
|
|
<footer>
|
2020-09-06 13:24:44 +02:00
|
|
|
<p class="copyright">
|
|
|
|
© Copyright Ping. All rights reserved.
|
|
|
|
</p>
|
2020-09-03 00:16:21 +02:00
|
|
|
<p class="attribution">
|
|
|
|
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
|
2020-09-06 12:27:32 +02:00
|
|
|
Coded by <a href="mailto:work@tarasis.net">Robert McGovern</a>.
|
2020-09-03 00:16:21 +02:00
|
|
|
</p>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|