-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (53 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Base Apparel coming soon page</title>
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
</head>
<body>
<div class="container">
<header>
<img class="logo" src="./images/logo.svg" alt="logo" />
</header>
<section class="hero">
<img src="./images/hero-mobile.jpg" alt="hero-image" />
</section>
<main>
<div class="wrapper">
<h1 class="heading">
<span>We're</span> <br />coming<br />
soon
</h1>
<p class="lead">
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" accept-charset="utf-8">
<input
type="text"
name="email"
id="email"
value=""
placeholder="Email Address"
/>
<div>
<img
id="error-icon"
src="./images/icon-error.svg"
alt="error-icon"
/>
<button class="btn" type="submit">
<img src="./images/icon-arrow.svg" alt="submit-arrow" />
</button>
</div>
<p id="error">Please provide a valid email</p>
</form>
</div>
</main>
</div>
<script src="script.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>