-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Mentor | Base Apparel coming soon page</title>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<main>
<img class="logo" src="./images/logo.svg" alt="Basel Apparel" />
<div class="container-banner-mobile">
<img class="cover-mobile" src="./images/hero-mobile.jpg" alt="mobile banner" />
</div>
<div class="text">
<h1>
We're
<b>coming</b>
<b>soon</b>
</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>
</div>
<form action="#">
<input type="email" class="email" placeholder="Email Address" aria-label="Email Address" required />
<button class="submit" type="submit">
<img src="./images/icon-arrow.svg" alt="submit">
</button>
<div class="icon-error"><img src="./images/icon-error.svg" alt="icon-error"></div>
<p class="error-message"><small>Please provide a valid email</small></p>
</form>
</main>
<section></section>
<script src="./main.js"></script>
</body>
</html>