-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (86 loc) · 2.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Frontend Mentor | Base Apparel coming soon page</title>
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<div class="logo-mobile">
<img class="logo-image" src="./images/logo.svg" alt="" />
</div>
<div class="hero">
<div class="hero__bg"></div>
<div class="hero__content">
<div class="container">
<div class="logo-desktop">
<img class="logo-image" src="./images/logo.svg" alt="" />
</div>
<h1 class="hero__title">
<span class="hero-title hero-title--1">We're</span>
<span class="hero-title hero-title--2">coming</span>
<span class="hero-title hero-title--3">soon</span>
</h1>
<p class="hero__text">
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 class="hero__form" id="heroForm">
<label class="visually-hidden" for="email">Email Address</label>
<input
autocomplete="off"
class="hero__input"
type="text"
placeholder="Email Address"
id="email"
name="email"
/>
<div class="hero__input-message"></div>
<img
class="hero__input-error-icon"
src="./images/icon-error.svg"
alt=""
/>
<button type="submit" class="hero__btn" aria-label="submit">
<img
src="./images/icon-arrow.svg"
class="hero__btn-icon"
alt=""
/>
</button>
</form>
</div>
</div>
</div>
<!-- <footer>
<p class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Your Name Here</a>.
</p>
</footer> -->
<script src="./js/scripts.js"></script>
</body>
</html>