-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (58 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<meta name="description" content="Base Apparel coming soon page">
<meta name="keywords" content="Frontend Mentor, Base Apparel coming soon page, _nehal, Responsive Designs">
<!-- icon linking -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<!-- Linking Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<title>Base Apparel coming soon page</title>
</head>
<body class="">
<main class="flex-row">
<div class = "container ff-sans flex-row ">
<div class="left flex-col">
<div class="main-content flex-col center">
<div id = "logo">
<button class="switch" title="Toggle the switch">
<span class="circle" title="Circular toggle element">
</span>
</button>
<div class="logo logo-light"></div>
</div>
<div class="hero-m">
<img src="images/hero-mobile.jpg" alt="hero-mobile">
</div>
<div id = "heading" class="flex-col">
<h1 class="flex-col fs-large uppercase letter-spacing-1"><span class="txt-light fw-300">We're</span><span class="txt-dark fw-600 cmsoon">coming soon</span> </h1>
</div>
<div id = "description">
<p class="txt-light fs-small">
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>
<div id = "input">
<div class = "input-box">
<form class = "form flex-row" >
<div class="flex-col f">
<input class="email br br-50 br-light fs-small" type="email" placeholder="Email Address">
<small class="fs-xsmall">Hello</small>
</div>
<img class="error-icon" src="images/icon-error.svg" alt="icon-error">
<button class="submit no-br br-50 br-light" type="submit" aria-label="Submit the form"></button>
</form>
</div>
</div>
</div>
</div>
<div class="hero-d poster"></div>
</div>
</main>
<script src="js/script.js"></script>
</body>
</html>