<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>My Blog</title>

    <link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->

</head>

<body>

    <header>

        <h1>Welcome to My Blog!</h1>

        <nav>

            <ul>

                <li><a href="index.html">Home</a></li>

                <li><a href="about.html">About</a></li>

                <li><a href="contact.html">Contact</a></li>

            </ul>

        </nav>

    </header>

    

    <main>

        <article>

            <h2>Latest Post</h2>

            <p>This is where your latest blog post will go. You can write about various topics that interest you!</p>

        </article>

    </main>


    <footer>

        <p>&copy; 2025 My Blog. See license</p>

    </footer>

</body>

</html>