<!DOCTYPE html>

<html lang="zh">

<head>

    <meta charset="UTF-8">

    <title>我的个人博客</title>

    <style>

        body { font-family: Arial, sans-serif; max-width: 700px; margin: 50px auto; padding: 20px; line-height: 1.6; background: #f9f9f9; }

        h1 { color: #333; border-bottom: 3px solid #4CAF50; padding-bottom: 10px; }

        .post { background: white; padding: 20px; margin-top: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

        .date { color: #888; font-size: 14px; }

    </style>

</head>

<body>

    <h1>📝 我的博客</h1>

    <p>欢迎来到我的小站!这是第一篇测试文章。</p>

    <div class="post">

        <h2>你好,世界!</h2>

        <div class="date">2026-08-25</div>

        <p>通过 Cloudflare Pages 部署成功!接下来我可以在这里记录我的生活和学习笔记了。</p>

    </div>

</body>

</html>