<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Your Page Title</title> </head> <body> <header> <h1>Your Website Name</h1> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <main> <section> <h2>Main Content Heading</h2> <p>This is the main content of your page.</p> <img src="image.jpg" alt="Image Description"> </section> </main> <footer> <p>© 2024 Your Website Name</p> </footer> </body> </html>