-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (44 loc) · 1.67 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
<!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">
<link rel="stylesheet" href="style.css">
<title> Base Apparel coming soon page</title>
</head>
<body>
<main>
<header class="logo">
<img src="./images/logo.svg" alt="logo">
</header>
<section class="hero-image">
<img src="./images/hero-mobile.jpg" alt="hero">
</section>
<section class="container">
<h1 class="heading">
We're <span>coming soon</span>
</h1>
<form action="email">
<label for="email" class="paragraph">
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.
</label>
<div class="input_wrapper">
<input required type="email" name="email" placeholder="Email Address" class="email-input">
<img src="./images/icon-error.svg" alt="error" class="icon-error">
<span class="error-text">Please provide a valid email</span>
<button class="btn">
<svg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'>
<title>Chevron Forward</title>
<path fill='none' stroke='#fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='48'
d='M184 112l144 144-144 144' />
</svg>
</button>
</div>
</form>
</section>
</main>
</body>
</html>