HTML爱心表白单页

王术煜 2023-12-31 253次阅读

<!DOCTYPE html>

<html lang="zh">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>爱心表白页面</title>

    <style>

        body {

            font-family: '微软雅黑', sans-serif;

            background-color: pink;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            margin: 0;

        }

        .heart {

            width: 100px;

            height: 100px;

            background-color: red;

            position: relative;

            transform: rotate(45deg);

        }

        .heart:before,

        .heart:after {

            content: '';

            width: 100px;

            height: 100px;

            background-color: red;

            border-radius: 50%;

            position: absolute;

        }

        .heart:before {

            top: -50px;

            left: 0;

        }

        .heart:after {

            top: 0;

            left: -50px;

        }

        h1 {

            font-size: 36px;

            color: white;

            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

        }

    </style>

</head>

<body>

    <div class="heart">

        <h1>我爱你</h1>

    </div>

</body>

</html>



发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。