-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (66 loc) · 3.16 KB
/
index.html
File metadata and controls
76 lines (66 loc) · 3.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.6"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Base Apparel coming soon page</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<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">
<!-- CSS only -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<script src="js/script.js" defer></script>
</head>
<body>
<main class="row">
<section class="left-section">
<div class="logo-div">
<img class="logo-img" src="images/logo.svg" alt="logo.svg">
</div>
<div class="hero-mobile-div">
<img class="hero-mobile-img" src="images/hero-mobile.jpg" alt="hero-mobile.jpg">
</div>
<div class="content-div">
<div>
<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>
<div>
<div class="email-div">
<input id="email-input" type="email" placeholder="Email Address">
<img title="Example
valid : azAZ09@azAZ.azAZ...
invalid : 09az@.in, abc.in, abc@in..." id="error-svg" src="images/icon-error.svg" alt="">
<i class="fa-solid fa-circle-check" id="fa-circle-check"></i>
<div class="send" onclick="validateSend()">
<div class="arrow-div">
<img class="arrow" src="images/icon-arrow.svg" alt="">
</div>
</div>
</div>
<p id="err-msg" style="color: red;font-size: 12px; visibility: hidden; margin:0 5px 20px 5px;">Please provide a valid email</p>
</div>
</div>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. <br>
Coded by <a href="https://www.frontendmentor.io/profile/NitheeshKumar-C" target="_blank">NitheeshKumar</a>.
</p>
</footer>
</section>
<section class="right-section">
<div class="right-img-div">
<img class="pic" src="images/hero-desktop.jpg" alt="">
</div>
</section>
</main>
<!-- We're coming soon
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.
Email Address
-->
</body>
</html>