Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>[Trendsetters Clothing]</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; color: #333; } header { background-color: #333; color: #fff; padding: 1rem; text-align: center; } .container { width: 80%; margin: 0 auto; } .product { border: 1px solid #ddd; margin: 1rem 0; padding: 1rem; text-align: center; } img { max-width: 100%; height: auto; } footer { background-color: #333; color: #fff; text-align: center; padding: 1rem; position: fixed; width: 100%; bottom: 0; } </style> </head> <body> <header> <h1>[Trendsetters Clothing]</h1> <nav> <a href="#hoodies">Hoodies</a> | <a href="#joggers">Joggers</a> | <a href="#shorts">Shorts</a> | <a href="#underwear">Underwear</a> | <a href="#socks">Socks</a> </nav> </header> <div class="container"> <section id="hoodies"> <h2>Hoodies</h2> <div class="product"> <img src="hoodie1.jpg" alt="Hoodie 1"> <h3>Comfort Hoodie</h3> <p>$49.99</p> <button>Add to Cart</button> </div> <!-- Add more hoodie products here --> </section> <section id="joggers"> <h2>Joggers</h2> <div class="product"> <img src="jogger1.jpg" alt="Jogger 1"> <h3>Relaxed Joggers</h3> <p>$39.99</p> <button>Add to Cart</button> </div> <!-- Add more jogger products here --> </section> <section id="shorts"> <h2>Shorts</h2> <div class="product"> <img src="shorts1.jpg" alt="Shorts 1"> <h3>Summer Shorts</h3> <p>$29.99</p> <button>Add to Cart</button> </div> <!-- Add more shorts products here --> </section> <section id="underwear"> <h2>Underwear</h2> <div class="product"> <img src="underwear1.jpg" alt="Underwear 1"> <h3>Comfort Fit Underwear</h3> <p>$19.99</p> <button>Add to Cart</button> </div> <!-- Add more underwear products here --> </section> <section id="socks"> <h2>Socks</h2> <div class="product"> <img src="socks1.jpg" alt="Socks 1"> <h3>Cozy Socks</h3> <p>$9.99</p> <button>Add to Cart</button> </div> <!-- Add more socks products here --> </section> </div> <footer> <p>© 2024 [Trendsetters Clothing]. All rights reserved.</p> </footer> </body> </html>
Leave a Comment