Untitled
unknown
plain_text
a year ago
1.5 kB
5
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Your Website</title> <style> /* Add your CSS styles here */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f0f0f0; } header { background-color: #333; color: #fff; padding: 10px 0; text-align: center; } nav { background-color: #444; color: #fff; padding: 10px; text-align: center; } nav a { color: #fff; text-decoration: none; padding: 0 10px; } main { padding: 20px; } footer { background-color: #333; color: #fff; text-align: center; padding: 10px 0; position: fixed; bottom: 0; width: 100%; } </style> </head> <body> <header> <h1>Welcome to Your Website</h1> </header> <nav> <a href="#">Home</a> <a href="#">About</a> <a href="#">Contact</a> </nav> <main> <h2>Home Page</h2> <p>This is the home page of your website.</p> </main> <footer> © 2024 Your Website. All rights reserved. </footer> </body> </html>
Editor is loading...
Leave a Comment