This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
47 lines (40 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Base Apparel coming soon page - Frontend Mentor">
<meta name="keywords" content="Base Apparel coming soon page. Frontend Mentor">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<title>Base Apparel coming soon page</title>
</head>
<body>
<main class="main-container">
<!-- Info Section -->
<section class="info-section">
<!-- Logo -->
<img class="logo" src="./images/logo.svg" alt="Base Apparel Logo" />
<!-- </section> -->
<div class="text-section">
<h1><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>
<!-- Input Section -->
<div class="input-section">
<input type="email" class="input-field" placeholder="Email Address">
<label for="input-field" class="error-msg"></label>
<div class="error">
<div class="error-icon"></div>
</div>
<button class="btn">
<div class="arrow-img"></div>
</button>
</div>
</section>
<!-- IMG Section -->
<section class="img-section"></section>
</main>
<script src="app.js"></script>
</body>
</html>