Website.html
Website.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DRESS ME</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>DRESS ME</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h2>Welcome to DRESS ME</h2>
<p>Discover the latest trends in fashion and style.</p>
<img src="banner.jpg" alt="Fashion Banner" style="width:100%;
height:auto;">
</section>
<section id="products">
<h2>Our Products</h2>
<div class="product">
<img src="product1.jpg" alt="Product 1">
<h3>Product Name 1</h3>
<p>Description of product 1.</p>
<p>Price: $XX.XX</p>
</div>
<div class="product">
<img src="product2.jpg" alt="Product 2">
<h3>Product Name 2</h3>
<p>Description of product 2.</p>
<p>Price: $XX.XX</p>
</div>
<div class="product">
<img src="product3.jpg" alt="Product 3">
<h3>Product Name 3</h3>
<p>Description of product 3.</p>
<p>Price: $XX.XX</p>
</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>We are a clothing brand dedicated to providing high-quality fashion
for everyone.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions, feel free to reach out!</p>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<footer>
<p>© 2023 Your Clothing Brand</p>
</footer>
</body>
</html>