当前位置:首页 > 行业动态 > 正文

如何用html写一个简单的表白信

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF8">
    <meta name="viewport" content="width=devicewidth, initialscale=1.0">
    <title>表白信</title>
    <style>
        body {
            fontfamily: Arial, sansserif;
            backgroundcolor: pink;
        }
        h1 {
            textalign: center;
            color: white;
        }
        table {
            margin: 0 auto;
            bordercollapse: collapse;
        }
        th, td {
            border: 1px solid white;
            padding: 10px;
            textalign: center;
        }
    </style>
</head>
<body>
    <h1>亲爱的,我喜欢你!</h1>
    <table>
        <tr>
            <th>姓名</th>
            <td>张三</td>
        </tr>
        <tr>
            <th>年龄</th>
            <td>25</td>
        </tr>
        <tr>
            <th>职业</th>
            <td>程序员</td>
        </tr>
        <tr>
            <th>兴趣爱好</th>
            <td>阅读、旅行、摄影</td>
        </tr>
    </table>
    <p>从遇见你的那一刻起,我就被你的笑容所吸引,你的善良、聪明和独立让我深深地爱上了你,我希望我们能一起走过未来的每一天,共同创造美好的回忆,请给我一个机会,让我成为你生命中的那个特别的人。</p>
    <p>此致,</p>
    <p>敬礼!</p>
    <p>张三</p>
</body>
</html>
0