Untitled
unknown
plain_text
19 days ago
2.8 kB
3
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Your Brand Name</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #333; color: #fff; padding: 10px 0; text-align: center; } nav { display: flex; justify-content: center; background-color: #444; } nav a { color: #fff; padding: 14px 20px; text-decoration: none; text-transform: uppercase; } nav a:hover { background-color: #555; } .hero { background: url('your-image.jpg') no-repeat center center/cover; height: 300px; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; } .hero h1 { font-size: 3rem; } .container { padding: 20px; } .products { display: flex; flex-wrap: wrap; justify-content: space-around; } .product { background: #fff; margin: 10px; padding: 20px; width: 30%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .product img { max-width: 100%; } footer { background-color: #333; color: #fff; text-align: center; padding: 10px 0; position: fixed; width: 100%; bottom: 0; } </style> </head> <body> <header> <h1>Your Brand Name</h1> </header> <nav> <a href="#home">Home</a> <a href="#shop">Shop</a> <a href="#about">About</a> <a href="#contact">Contact</a> </nav> <div class="hero"> <h1>Welcome to Your Brand</h1> </div> <div class="container"> <h2>Our Products</h2> <div class="products"> <div class="product"> <img src="product1.jpg" alt="Product 1"> <h3>Product 1</h3> <p>$20.00</p> </div> <div class="product"> <img src="product2.jpg" alt="Product 2"> <h3>Product 2</h3> <p>$25.00</p> </div> <div class="product"> <img src="product3.jpg" alt="Product 3"> <h3>Product 3</h3> <p>$30.00</p> </div> </div> </div> <footer> <p>© 2023 Your Brand Name. All rights reserved.</p> </footer> </body> </html>
Editor is loading...
Leave a Comment