-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<title>Base apparel coming soon page</title>
</head>
<body>
<header>
<img src="./assets/logo.svg" alt="Logo">
</header>
<main>
<section class="main-info">
<span>We're</span>
<h1>Coming 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 novalidate id="form" onsubmit="return false;">
<label for="email" id="email-label">
Please provide a valid email
</label>
<input type="email" name="email" id="email" placeholder="Email Address">
<button type="submit" id="submit">
<img src="./assets/icon-arrow.svg" alt="Arrow">
</button>
</form>
</section>
<div class="main-hero"></div>
</main>
</body>
<script src="./scripts.js"></script>
</html>