Day14综合案例一--热词

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>热词</title>
    <style>
        a{
            display: block;
            height: 80px;
            width: 200px;
            background-color: #3064bb;
            color: #fff;
            text-decoration: none;
            text-align: center;
            font-size: 18px;
            line-height: 80px;
        }

        a:hover{
            background-color: #608dd9;
        }
    </style>
</head>
<body>
    <a href="#">HTML</a>
    <a href="#">CSS</a>
    <a href="#">JavaScript</a>
    <a href="#">Vue</a>
    <a href="#">React</a>
</body>
</html>

image

posted @ 2025-11-05 22:23  冰涿  阅读(4)  评论(0)    收藏  举报