CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Fashion Website</title>
<!-- Bootstrap CSS CDN -->
<link href="[Link] rel="stylesheet" />
<style>
body {
background-image: url('[Link]');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
color: white;
.hero {
height: 60vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: rgba(0, 0, 0, 0.5); /* dark overlay */
.hero h1 {
font-size: 4rem;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
.card {
background-color: rgba(255, 255, 255, 0.9);
color: #333;
border: none;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
.card-img-top {
height: 300px;
object-fit: cover;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>Step into Style</h1>
<p class="lead">Discover the latest trends in fashion and lifestyle</p>
</div>
</section>
<!-- Featured Collection -->
<section class="py-5">
<div class="container">
<h2 class="text-center mb-4" style="color:#000;">Featured Collection</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card">
<img src="[Link]" class="card-img-top" alt="Elegant Evening Dress">
<div class="card-body">
<h5 class="card-title">Elegant Evening Dress</h5>
<p class="card-text">Perfect for a night out or a special occasion.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="[Link]" class="card-img-top" alt="Classic Leather Jacket">
<div class="card-body">
<h5 class="card-title">Classic Leather Jacket</h5>
<p class="card-text">Add edge to any outfit with this timeless piece.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="[Link]" class="card-img-top" alt="Stylish Accessories">
<div class="card-body">
<h5 class="card-title">Stylish Accessories</h5>
<p class="card-text">Complete your look with the perfect accessories.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Bootstrap JS -->
<script src="[Link]
</body>
</html>