<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Personal Blog</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f0f2f5;
        }
        .container {
            max-width: 900px;
            margin: 50px auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        h1 {
            color: #333;
        }
        .post {
            margin-bottom: 20px;
        }
        .post h2 {
            margin: 0;
        }
        .post p {
            margin: 5px 0;
        }
        .post a {
            color: #007bff;
            text-decoration: none;
        }
        .post a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Welcome to My Blog</h1>
        <div class="post">
            <h2><a href="#">Understanding JavaScript Closures</a></h2>
            <p>Published on September 10, 2024</p>
            <p>In this post, we will explore the concept of closures in JavaScript and how they can be used to create private variables and functions.</p>
        </div>
        <div class="post">
            <h2><a href="#">A Guide to CSS Grid Layout</a></h2>
            <p>Published on August 5, 2024</p>
            <p>This post covers the basics of CSS Grid Layout and how you can use it to create complex and responsive layouts.</p>
        </div>
        <div class="post">
            <h2><a href="#">Introduction to React Hooks</a></h2>
            <p>Published on July 20, 2024</p>
            <p>Learn about React Hooks, a new feature that allows you to use state and other React features without writing a class.</p>
        </div>
    </div>
</body>
</html>