Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>MDT Guru - Sasp</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #333; color: #fff; padding: 1rem; text-align: center; } nav { display: flex; justify-content: center; background-color: #444; } nav a { color: #fff; padding: 1rem; text-decoration: none; } nav a:hover { background-color: #555; } main { padding: 2rem; } section { background-color: #fff; margin-bottom: 1rem; padding: 1rem; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } footer { background-color: #333; color: #fff; text-align: center; padding: 1rem; position: fixed; width: 100%; bottom: 0; } </style> </head> <body> <header> <h1>MDT Guru - Sasp</h1> </header> <nav> <a href="#">Home</a> <a href="#">Features</a> <a href="#">Contact</a> </nav> <main> <section> <h2>Welcome to MDT Guru - Sasp</h2> <p>This is a base version of the website inspired by the original. You can add more content and features as needed.</p> </section> <section> <h2>Features</h2> <ul> <li>Feature 1</li> <li>Feature 2</li> <li>Feature 3</li> </ul> </section> </main> <footer> <p>© 2024 MDT Guru - Sasp. All rights reserved.</p> </footer> </body> </html>
Leave a Comment