-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (40 loc) · 1.63 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
<!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="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
<title>Base Apparel - Coming soon</title>
</head>
<body>
<div class="wrapper">
<header>
<img src="./images/logo.svg" alt="Logo Base Apparel">
</header>
<main>
<section class="content">
<div class="content__wrapper">
<h1 class="content__title"><span>WE'RE</span>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 action="#" method="GET" onsubmit="Form.submit(event)">
<fieldset >
<legend>Email Contact</legend>
<label for="email">Email Address</label>
<input type="email" name="email" id="email" placeholder="Email Address">
<div class="error-icon"></div>
<small class="warning"></small>
<button aria-label="Submit Button" title="Submit Button" type="submit" class="form__button">
<img src="./images/icon-arrow.svg" alt="Submit button arrow icon">
</button>
</fieldset>
</form>
</div>
</section>
</main>
</div>
<script src="./scripts/script.js"></script>
</body>
</html>