Untitled
unknown
plain_text
9 months ago
1.3 kB
6
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Women's Clothing</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Women's Clothing</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="men.html">Men</a></li>
<li><a href="women.html">Women</a></li>
<li><a href="cart.html">Cart <span id="cart-count">0</span></a></li>
</ul>
</nav>
</header>
<section class="products">
<div class="product">
<img src="images/women1.jpg" alt="Women's Dress">
<h3>Women's Dress</h3>
<p>$29.99</p>
<button onclick="addToCart('Women\'s Dress', 29.99)">Add to Cart</button>
</div>
<div class="product">
<img src="images/women2.jpg" alt="Women's Top">
<h3>Women's Top</h3>
<p>$19.99</p>
<button onclick="addToCart('Women\'s Top', 19.99)">Add to Cart</button>
</div>
</section>
<footer>
<p>© 2025 Fashion Store. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment