<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>我的主封面</title>
    <style>
        /* 简单的封面样式，可自行修改 */
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 100vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: Arial, sans-serif;
        }
        .title {
            color: white;
            font-size: 40px;
            margin-bottom: 40px;
        }
        .btn {
            padding: 15px 30px;
            background: white;
            color: #764ba2;
            text-decoration: none;
            border-radius: 8px;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn:hover {
            background: #f0f0f0;
            transform: scale(1.05);
        }
    </style>
</head>
<body>
    <h1 class="title">我的个人主页</h1>
    <!-- 跳转到随机抽取子页面的按钮 -->
    <a href="random.html" class="btn">进入随机抽取工具</a >
    <!-- 后续加其他子页面，复制上面的a标签改href和文字即可 -->
    <!-- <a href="其他页面.html" class="btn">其他功能</a > -->
</body>
</html>
