-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (42 loc) · 1.48 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
<!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="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Base Apparel coming soon page</title>
</head>
<body>
<div class="container">
<div class="left-sec">
<div class="left-sec__content">
<img class="logo" src="images/logo.svg" alt="logo">
<img class="bg-mobile" src="images/hero-mobile.jpg" alt="background mobile">
<h1><span>We're</span><br />
coming<br />
soon</h1>
<p>Hello fellow shoppers! We're currently building our new fashion store.
Add your email below to stay up-to-date with announcements and our launch deals.</p>
<form class="form">
<input class="email" type="email" placeholder="Email Address Here">
<img class="error-icon" src="images/icon-error.svg" alt="error">
<button>
<img src="images/icon-arrow.svg" alt="arrow">
</button>
<small>Please provide a valid email</small>
</form>
</div>
</div>
<div class="rigth-sec bg-img">
</div>
</div>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Lauren Gayle</a>.
</p>
</footer>
<script src="main.js"></script>
</body>
</html>