Untitled
unknown
plain_text
a year ago
1.7 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 Website Title</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; } nav { background-color: #444; color: #fff; text-align: center; padding: 10px; } nav ul { list-style: none; padding: 0; } nav li { display: inline; margin-right: 20px; } .container { max-width: 960px; margin: 0 auto; padding: 20px; } h1 { font-size: 36px; } p { font-size: 18px; } </style> </head> <body> <header> <h1>Welcome to Your Website</h1> <p>Your tagline or description goes here.</p> </header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Contact</a></li> </ul> </nav> <div class="container"> <h2>About Us</h2> <p>This is a sample website. You can replace this content with your own.</p> </div> <footer> <p>© 2023 Your Website</p> </footer> </body> </html>
Editor is loading...