<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Website Title</title> <link href="https://fonts.googleapis.com/css?family=lexend:200, 400" rel="stylesheet"> <link rel="stylesheet" href="styles.css"> <!-- Link to the external CSS file --> </head> <body> <header class="header"> <h1>Website Name</h1> <h2>by Author Name</h2> </header> <nav> <ul class="nav"> <li><a href="index.html">Blog</a></li> <li><a href="about.html">About</a></li> </ul> </nav> <main class="main"> <p>Welcome to the website. This is a space to share thoughts, projects, or other information. Feel free to explore the blog or learn more about the author in the about section.</p> <div class="blog-links"> <p>Recent Posts:</p> <ul> <li><a href="post1.html">Post</a></li> </ul> </div> </main> <footer class="footer"> <p>Contact: <a href="mailto:your-email@example.com">your-email@example.com</a></p> </footer> </body> </html>