<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>我的小天地</title>
    <style>
        /* 全局样式 */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Comic Sans MS', cursive, sans-serif;
            background: linear-gradient(to bottom right, #ffd1dc, #a0e7e5);
            color: #333;
            text-align: center;
        }

        /* 导航栏 */
        nav {
            background-color: #f8b400;
            padding: 10px 0;
        }

        nav a {
            margin: 0 15px;
            text-decoration: none;
            color: white;
            font-size: 18px;
            font-weight: bold;
        }

        /* 头部样式 */
        header {
            padding: 50px;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        header h1 {
            font-size: 48px;
            color: #ff6b6b;
            margin: 0;
        }

        header h2 {
            font-size: 24px;
            color: #6b6bff;
            margin-top: 10px;
        }

        /* 主体内容 */
        main {
            padding: 20px;
        }

        .post {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 20px auto;
            padding: 20px;
            width: 80%;
            max-width: 800px;
        }

        .post h3 {
            font-size: 28px;
            color: #ff6b6b;
        }

        .post p {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
        }

        /* 按钮样式 */
        .button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #ff6b6b;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: #ff4c4c;
        }

        /* 页脚样式 */
        footer {
            background-color: #f8b400;
            padding: 20px;
            color: white;
            margin-top: 30px;
        }

        footer p {
            margin: 0;
        }

        /* 侧边栏（如果需要） */
        aside {
            background-color: #a0e7e5;
            padding: 20px;
            margin: 20px auto;
            border-radius: 15px;
            width: 80%;
            max-width: 300px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            header h1 {
                font-size: 36px;
            }

            header h2 {
                font-size: 18px;
            }

            .post h3 {
                font-size: 24px;
            }

            .post p {
                font-size: 16px;
            }

            .button {
                font-size: 16px;
                padding: 8px 16px;
            }
        }
    </style>
</head>
<body>

    <!-- 导航栏 -->
    <nav>
        <a href="#home">首页</a>
        <a href="#about">关于我</a>
        <a href="#blog">博客</a>
        <a href="#contact">联系</a>
    </nav>

    <!-- 头部 -->
    <header>
        <h1>我的博客天地</h1>
        <h2>欢迎来到我的博客</h2>
    </header>

    <!-- 主体内容 -->
    <main>
        <section class="post">
            <h3>第一篇博客文章</h3>
            <p>
                这是我的第一篇博客文章，欢迎大家来到我的小天地！这里记录了我的生活点滴和一些有趣的事情。
                希望你们喜欢，别忘了常来看看哦！
            </p>
            <a href="#" class="button">阅读更多</a>
        </section>

        <section class="post">
            <h3>最近的分享</h3>
            <p>
                最近我发现了一个非常好玩的东西，忍不住要和大家分享。生活中总有些小惊喜，让我们每天都充满期待。
                更多内容请点击阅读下方哦！
            </p>
            <a href="#" class="button">阅读更多</a>
        </section>
    </main>

    <!-- 侧边栏（可选） -->
    <aside>
        <h3>关于我</h3>
        <p>我是一个热爱生活的博主，喜欢分享有趣的故事和感悟。如果你也喜欢这样的内容，请关注我哦！</p>
    </aside>

    <!-- 页脚 -->
    <footer>
        <p>© 2024 我的可爱博客 | 版权所有</p>
    </footer>

</body>
</html>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>我的小天地</title>
    <style>
        /* 全局样式 */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Comic Sans MS', cursive, sans-serif;
            background: linear-gradient(to bottom right, #ffd1dc, #a0e7e5);
            color: #333;
            text-align: center;
        }

        /* 导航栏 */
        nav {
            background-color: #f8b400;
            padding: 10px 0;
        }

        nav a {
            margin: 0 15px;
            text-decoration: none;
            color: white;
            font-size: 18px;
            font-weight: bold;
        }

        /* 头部样式 */
        header {
            padding: 50px;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        header h1 {
            font-size: 48px;
            color: #ff6b6b;
            margin: 0;
        }

        header h2 {
            font-size: 24px;
            color: #6b6bff;
            margin-top: 10px;
        }

        /* 主体内容 */
        main {
            padding: 20px;
        }

        .post {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 20px auto;
            padding: 20px;
            width: 80%;
            max-width: 800px;
        }

        .post h3 {
            font-size: 28px;
            color: #ff6b6b;
        }

        .post p {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
        }

        /* 按钮样式 */
        .button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #ff6b6b;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: #ff4c4c;
        }

        /* 页脚样式 */
        footer {
            background-color: #f8b400;
            padding: 20px;
            color: white;
            margin-top: 30px;
        }

        footer p {
            margin: 0;
        }

        /* 侧边栏（如果需要） */
        aside {
            background-color: #a0e7e5;
            padding: 20px;
            margin: 20px auto;
            border-radius: 15px;
            width: 80%;
            max-width: 300px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            header h1 {
                font-size: 36px;
            }

            header h2 {
                font-size: 18px;
            }

            .post h3 {
                font-size: 24px;
            }

            .post p {
                font-size: 16px;
            }

            .button {
                font-size: 16px;
                padding: 8px 16px;
            }
        }
    </style>
</head>
<body>

    <!-- 导航栏 -->
    <nav>
        <a href="#home">首页</a>
        <a href="#about">关于我</a>
        <a href="#blog">博客</a>
        <a href="#contact">联系</a>
    </nav>

    <!-- 头部 -->
    <header>
        <h1>我的小天地</h1>
        <h2>欢迎来到我的可爱博客</h2>
    </header>

    <!-- 主体内容 -->
    <main>
        <section class="post">
            <h3>第一篇博客文章</h3>
            <p>
                这是我的第一篇博客文章，欢迎大家来到我的小天地！这里记录了我的生活点滴和一些有趣的事情。
                希望你们喜欢，别忘了常来看看哦！
            </p>
            <a href="#" class="button">阅读更多</a>
        </section>

        <section class="post">
            <h3>最近的分享</h3>
            <p>
                最近我发现了一个非常好玩的东西，忍不住要和大家分享。生活中总有些小惊喜，让我们每天都充满期待。
                更多内容请点击阅读下方哦！
            </p>
            <a href="#" class="button">阅读更多</a>
        </section>
    </main>

    <!-- 侧边栏（可选） -->
    <aside>
        <h3>关于我</h3>
        <p>我是一个热爱生活的博主，喜欢分享有趣的故事和感悟。如果你也喜欢这样的内容，请关注我哦！</p>
    </aside>

    <!-- 页脚 -->
    <footer>
        <p>© 2024 我的可爱博客 | 版权所有</p>
    </footer>

</body>
</html>
