<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>ModeDefine Fashion Magazine</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f8f8f8; color: #333; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; } nav { background-color: #444; padding: 10px 0; text-align: center; } nav a { color: #fff; text-decoration: none; margin: 0 10px; } nav a:hover { text-decoration: underline; } .container { max-width: 800px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } h1, h2 { text-align: center; } p { line-height: 1.6; } </style> </head> <body> <header> <h1>Welcome to ModeDefine Fashion Magazine</h1> </header> <nav> <a href="#about">About</a> <a href="#beauty">Beauty</a> <a href="#fashion">Fashion</a> <a href="#makeup">Makeup</a> </nav> <div class="container"> <section id="about"> <h2>About ModeDefine</h2> <p>ModeDefine Fashion Magazine is your ultimate destination for all things fashion, beauty, and makeup. We bring you the latest trends, expert insights, and inspiration to help you express your unique style.</p> <p>Our dedicated team of writers and editors curate content that caters to fashion enthusiasts, makeup lovers, and anyone looking to stay ahead in the world of style.</p> </section> <section id="beauty"> <h2>Beauty</h2> <p>Discover the latest trends in beauty, skincare routines, makeup tips, and more. Our experts bring you insights into achieving the perfect look for any occasion.</p> </section> <section id="fashion"> <h2>Fashion</h2> <p>Explore the world of fashion with ModeDefine. From runway trends to street style inspirations, we cover it all. Stay updated with the hottest looks and fashion-forward ideas.</p> </section> <section id="makeup"> <h2>Makeup</h2> <p>Get ready to glam up with our makeup section. Whether you're a makeup enthusiast or a beginner, our tutorials, product reviews, and beauty hacks will help you achieve flawless makeup looks.</p> </section> </div> </body> </html>