-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·61 lines (53 loc) · 2.16 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
<!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="./src/images/favicon-32x32.png">
<link rel="stylesheet" type="text/css" href="dist/styles/index.css">
<link rel="stylesheet" type="text/css" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css">
<title>Frontend Mentor | Base Apparel coming soon page</title>
</head>
<body>
<!-- MAIN CONTENT: START-->
<div class="coming-soon" style="background-image: url('src/images/bg-pattern-desktop.svg')">
<header class="margin-left">
<img src="./src/images/logo.svg" alt="company logo">
</header>
<main>
<div class="hero-mobile" style="background-image: url('src/images/hero-mobile.jpg')"></div>
<div class="page-content">
<h1>
<span class="header-light">We're</span>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 action="/" method="GET">
<label for="email">
<input class="email" id="email" type="text" placeholder="Email Address">
</label>
<button type="submit" aria-label="submit-email">
<i class="fa fa-chevron-right fa-2x" style="font-weight:900"></i>
</button>
<span id="error"></span>
</form>
</div>
</main>
<footer>
<p>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>
<br>
Coded by <a href="https://github.com/ann-dev">ann-dev</a>.
</p>
</footer>
</div>
<!-- MAIN CONTENT: END-->
<!-- SIDE IMAGE: START-->
<div class="side-image" style="background-image: url('src/images/hero-desktop.jpg')"></div>
<!-- SIDE IMAGE: END-->
<script src="src/js/scripts.js"></script>
</body>
</html>