Untitled
Anonymous
plain_text
02/15/2026 4:37 PM
7.8 KB
11
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YourBrand - Ethnic Kurtis</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background: #f9f9f9; }
.header { background: #ff6b6b; color: white; padding: 10px; text-align: center; }
.product { display: flex; max-width: 800px; margin: 20px auto; }
.product img { width: 300px; height: 400px; object-fit: cover; }
.details { padding: 20px; }
.price { font-size: 24px; color: #28a745; }
button { background: #007bff; color: white; padding: 10px 20px; border: none; cursor: pointer; }
</style>
</head>
<body>
<div class="header">
<h1>Your Jamshedpur Clothing Brand</h1>
<nav>Men | Women | Kurtis | Jeans</nav>
</div>
<div class="product">
<img src="kurtis.jpg" alt="Red Kurti">
<div class="details">
<h2>Red Cotton Kurti</h2>
<p>Handloom from Jharkhand, sizes S-XXL. Perfect for daily wear.</p>
<div class="price">₹899</div>
<select>
<option>Size: S</option>
<option>M</option>
<option>L</option>
</select>
<button onclick="addToCart()">Add to Cart</button>
</div>
</div>
<script>
function addToCart() { alert('Added to cart!'); }
</script>
</body>
</html>Editor is loading...
Leave a Comment