-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (84 loc) · 2.73 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
<!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"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script defer src="script.js"></script>
<title>Frontend Mentor | Base Apparel Coming Soon Page</title>
</head>
<body>
<div class="container">
<main class="base">
<div class="base__img-container"></div>
<header class="base__logo-container base__container">
<img src="./images/logo.svg" alt="logo" class="base__logo" />
</header>
<div class="base__content base__container">
<h1 class="base__heading">
<span class="base__heading--highlighted">We're</span> coming soon
</h1>
<p class="base__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 action="#" class="base__form js-form">
<input
name="email"
class="base__input js-input"
placeholder="Email Address"
aria-label="Email input"
/>
<img
class="base__button--error-icon js__error-icon"
src="./images/icon-error.svg"
alt="error"
aria-hidden="true"
/>
<button
class="base__button"
aria-label="Submit button"
type="submit"
value="Submit"
>
<img
src="./images/icon-arrow.svg"
alt="arrow"
aria-hidden="true"
/>
</button>
</form>
<p class="base__error js__error-text"></p>
<footer class="attribution">
Challenge by
<a
class="attribution__link"
href="https://www.frontendmentor.io?ref=challenge"
target="_blank"
>Frontend Mentor</a
>. Coded by
<a
class="attribution__link"
href="https://github.com/kens-visuals"
target="_blank"
>Kens-Visuals</a
>.
</footer>
</div>
</main>
</div>
</body>
</html>