<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Simple Website</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #333; color: white; padding: 1rem; text-align: center; } nav { background-color: #444; padding: 0.5rem; text-align: center; } nav a { color: white; margin: 0 1rem; text-decoration: none; } main { padding: 1rem; } footer { background-color: #333; color: white; text-align: center; padding: 1rem; position: fixed; width: 100%; bottom: 0; } </style> </head> <body> <header> <h1>Welcome to My Website</h1> </header> <nav> <a href="#">Home</a> <a href="#">About</a> <a href="#">Contact</a> </nav> <main> <h2>About This Website</h2> <p>This is a simple website created using HTML and CSS.</p> </main> <footer> <p>© 2024 My Simple Website</p> </footer> </body> </html>
top of page

Embedium Group
Public·3 members
About
Welcome to the group! Connect with other members, get updates and share media.
bottom of page