-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
51 lines (46 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Welcome | LuxeWear</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Header -->
<header class="header">
<h1 class="logo">LuxeWear</h1>
<nav class="nav">
<a href="#">Home</a>
<a href="#">Shop</a>
<a href="#">Collections</a>
<a href="#">Contact</a>
</nav>
</header>
<!-- Hero Section -->
<main class="hero">
<div class="hero-text">
<h2>Welcome to LuxeWear</h2>
<p>Discover timeless fashion curated for elegance, comfort, and confidence. Shop our latest collections and make every day a runway.</p>
<a href="#upcoming-events" class="button">Explore More</a>
</div>
<div class="hero-image">
<img src="saleimage.avif" alt="Fashion Hero">
</div>
</main>
<!-- Upcoming Events -->
<section id="upcoming-events" class="events">
<h2>Upcoming Events</h2>
<p class="caption">Big Summer Sale — Up to 50% Off!</p>
<div class="line"></div>
<p class="description">
Get ready to revamp your wardrobe! LuxeWear brings you the latest trends in fashion with unbeatable prices. From streetwear to haute couture, redefine your style with our premium collections. Stay tuned for upcoming drops and limited-edition pieces.
</p>
<a href="LuxeWear/Fashion-Juststyle/index.html" target="_blank" class="button special">Login to Fashion Store</a>
</section>
<!-- Footer -->
<footer class="footer">
© 2025 LuxeWear. All rights reserved.
</footer>
</body>
</html>