-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (62 loc) · 1.99 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
<!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"
/>
<!-- External stylesheet -->
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | Base Apparel coming soon page</title>
</head>
<body>
<main>
<div class="container">
<div class="container__logo">
<img src="images/logo.svg" alt="base apparel logo" />
</div>
<div class="contaner__content">
<div class="container__text">
<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>
</div>
<form>
<div>
<input type="email" name="email" placeholder="Email Address" />
<img
src="images/icon-error.svg"
id="error__icon"
alt="error icon"
/>
<button type="submit">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="20">
<path
fill="none"
stroke="#FFF"
stroke-width="2"
d="M1 1l8.836 8.836L1 18.671"
/>
</svg>
</button>
</div>
<output id="error__message"></output>
</form>
</div>
<div class="container__image">
<img class="mobile" src="images/hero-mobile.jpg" alt="hero image" />
<img class="desktop" src="images/hero-desktop.jpg" alt="hero image" />
</div>
</div>
</main>
<script src="app.js"></script>
</body>
</html>