Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>G’s Hair Studio</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; color: #333; background-color: #f9f9f9; } header { background-color: #003366; color: #fff; padding: 20px; text-align: center; } .container { width: 80%; margin: auto; overflow: hidden; } .main-content { padding: 20px; background-color: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.1); } .section { margin-bottom: 20px; } h1, h2 { color: #003366; } footer { background-color: #003366; color: #fff; text-align: center; padding: 10px; position: fixed; width: 100%; bottom: 0; } .btn { display: inline-block; padding: 10px 20px; font-size: 16px; color: #fff; background-color: #006400; text-decoration: none; border-radius: 5px; } .btn:hover { background-color: #004d00; } </style> </head> <body> <header> <div class="container"> <h1>G’s Hair Studio</h1> <p>Promoting Sustainable and Natural Hair Products for Black Roman</p> </div> </header> <div class="container main-content"> <section class="section"> <h2>About Us</h2> <p>Welcome to G’s Hair Studio, where we are committed to offering the finest natural and sustainable hair products. Our range includes premium hair bundles and products designed with care and luxury in mind. We strive to cater to your unique beauty needs with the highest quality and ethical standards.</p> </section> <section class="section"> <h2>Our Products</h2> <p>Explore our exclusive collection of hair bundles and products. Each item is crafted to enhance your natural beauty while adhering to sustainable practices. Discover the perfect fit for your style and enjoy a touch of luxury in every product.</p> </section> <section class="section"> <h2>Contact Us</h2> <p>Have questions or need assistance? Reach out to us and our team will be happy to help you. We value your feedback and are here to ensure you have a seamless experience.</p> <a href="mailto:info@hairstudio.com" class="btn">Contact Us</a> </section> </div> <footer> <p>© 2024 G’s Hair Studio. All rights reserved.</p> </footer> </body> </html>
Leave a Comment