-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 2.8 KB
/
index.html
File metadata and controls
66 lines (59 loc) · 2.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Almost Cool | Quirky Sarees</title>
<link rel="stylesheet" href="style.css">
<!-- Google Fonts -->
<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=Poppins:wght@300;600&family=Rozha+One&display=swap" rel="stylesheet">
<!-- FontAwesome for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<!-- Decorative floating elements -->
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<nav>
<div class="logo">almost<span class="dot">.</span>cool</div>
<div class="socials">
<a href="https://www.instagram.com/wearealmostcool"><i class="fab fa-instagram"></i></a>
</div>
</nav>
<main class="container">
<div class="content-wrapper">
<div class="text-section">
<span class="tagline">COMING SOON TO YOUR WARDROBE</span>
<h1>Sarees that pass the <br><span class="highlight">Vibe Check.</span></h1>
<p class="subtext">
Tradition? Yes. Boring? Never. <br>
Handpicked, quirky drapes for main character energy.
<br><strong>No Aunty-ji approval required.</strong>
</p>
<form id="signup-form" class="signup-form" action="https://formspree.io/f/xjknebpq" method="POST">
<input type="email" id="email" placeholder="Drop your email here..." required>
<button type="submit" id="submit-btn">Notify Me <i class="fas fa-arrow-right"></i></button>
</form>
<p id="success-msg" class="hidden">Shukriya! We'll slide into your inbox soon. ✨</p>
</div>
<div class="visual-section">
<div class="image-frame">
<!-- Placeholder image from Unsplash. Replace 'saree-img.jpg' with your own product shot later -->
<img src="/assets/banner.png" alt="Cool Saree Model">
<div class="sticker sticker-1">Desi AF</div>
</div>
</div>
</div>
</main>
<!-- Scrolling Marquee Footer -->
<div class="marquee-container">
<div class="marquee-content">
<span>MODERN DRAPES • QUIRKY PRINTS • HANDLOOM LOVE • ALMOST COOL • DESI SWAG • </span>
<span>MODERN DRAPES • QUIRKY PRINTS • HANDLOOM LOVE • ALMOST COOL • DESI SWAG • </span>
</div>
</div>
<script src="script.js"></script>
</body>
</html>