Coding Rest
Coding Rest
DOCTYPE html>
<html>
<head>
<title>My first Webpage</title>
<title>Wardrobe Haven</title>
<!--woman's page-->
<!--logo-->
.store-logo {
width: 100%;
max-width: 3600px;
height: auto;
display: block;
margin: 0 auto;
}
<!--button-->
button:hover {
background-color: #e65c00;
}
<!--woman-->
</style>
</head>
<body>
<h1>WardrobeHaven</h1>
<!-- collage Section -->
<div class="collage">
<img src="im1.jpg" class="slide">
<img src="im2.jpg" class="slide">
<img src="im3.jpg" class="slide">
<img src="im4.jpg" class="slide">
<img src="im5.jpg" class="slide">
</div>
</body>
<nav>
<a href="men.html">
<button>Men's Clothing</button>
</a>
<a href="women.html">
<button>Women's Clothing</button>
</a>
<a href="kid.html">
<button>Kid's Clothing</button>
</a>
</nav>
<section id="men">
<h2>Men's Clothing</h2>
<img src="LINEN-SHIRTS.jpg" alt="Men's Clothing">
<p>Discover stylish men's wear, from casual shirts to formal suits.</p>
</section>
<section id="women">
<h2>Women's Clothing</h2>
<img src="dwld.jpg" alt="Women's Clothing">
<p>Explore elegant dresses, trendy tops, and fashionable accessories.</p>
</section>
<section id="kids">
<h2>Kids' Clothing</h2>
<img src="k.jpg" alt="Kids' Clothing">
<p>Comfortable and stylish outfits for kids of all ages.</p>
</section>
<!--woman page-->
<h1>Women's Clothing</h1>
<p>Explore elegant dresses, trendy tops, and fashionable accessories.</p>
<div class="product">
<img src="dress.jpg" alt="Elegant Dress">
<h3>Elegant Dress</h3>
<p>Price: $45 | Availability: In Stock</p>
<button onclick="addToCart('Elegant Dress', 45)">Add to Cart</button>
</div>
<div class="product">
<img src="jeans.jpg" alt="Denim Jeans">
<h3>Denim Jeans</h3>
<p>Price: $40 | Availability: In Stock</p>
<button onclick="addToCart('Denim Jeans', 40)">Add to Cart</button>
</div>
<div class="product">
<img src="top.jpg" alt="Stylish Top">
<h3>Stylish Top</h3>
<p>Price: $35 | Availability: In Stock</p>
<button onclick="addToCart('Stylish Top', 35)">Add to Cart</button>
</div>
<br>
<a href="index.html">Back to Home</a>
<script>
function addToCart(item, price) {
alert(item + " added to cart! Price: $" + price);
}
</script>
</body>
</html>
<footer>
<p>Contact Us: <a href="mailto:[email protected]">[email protected]</a></p>
<p>© 2025 WardrobeHaven. All rights reserved.</p>
</footer>
</body>
</html>