Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Your Skincare Shop</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; box-sizing: border-box; background-color: #f7f7f7; } header { background: #333; color: white; padding: 10px 20px; text-align: center; } nav { display: flex; justify-content: center; padding: 10px 0; background: #444; } nav a { color: white; margin: 0 15px; text-decoration: none; font-weight: bold; } .hero { text-align: center; padding: 50px 20px; background: url('hero-image.jpg') no-repeat center center/cover; color: white; } .hero h1 { font-size: 3em; } .products { display: flex; flex-wrap: wrap; justify-content: space-around; padding: 20px; } .product { border: 1px solid #ddd; border-radius: 5px; margin: 15px; padding: 15px; width: 250px; background: white; } .product img { max-width: 100%; border-radius: 5px; } .product h3 { margin: 10px 0; } .footer { background: #333; color: white; text-align: center; padding: 15px; } </style> </head> <body> <header> <h1>Your Skincare Shop</h1> <p>Discover beautiful, healthy skin with our premium skincare products.</p> </header> <nav> <a href="#home">Home</a> <a href="#products">Products</a> <a href="#about">About Us</a> <a href="#contact">Contact</a> </nav> <section class="hero" id="home"> <h1>Glow Naturally</h1> <p>Your journey to radiant skin starts here.</p> </section> <section class="products" id="products"> <div class="product"> <img src="cleanser.jpg" alt="Cleanser"> <h3>Gentle Facial Cleanser</h3> <p>Price: $12.99</p> <button>Add to Cart</button> </div> <div class="product"> <img src="moisturizer.jpg" alt="Moisturizer"> <h3>Hydrating Moisturizer</h3> <p>Price: $18.99</p> <button>Add to Cart</button> </div> <div class="product"> <img src="serum.jpg" alt="Serum"> <h3>Vitamin C Serum</h3> <p>Price: $24.99</p> <button>Add to Cart</button> </div> </section> <footer class="footer"> <p>© 2025 Your Skincare Shop. All rights reserved.</p> <p>Follow us on <a href="#">Instagram</a> | <a href="#">Facebook</a> | <a href="#">Twitter</a></p> </footer> </body> </html>
Leave a Comment