HTML学习笔记——超链接

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>超链接</title>
    <style>
        a{
            text-decoration:none;
        }
        a:visited{
            color:black;
        }
        a:hover{
            color:red;
            text-decoration:underline;
        }
    </style>
</head>
<body>

    <a href="https://blog.csdn.net/progammer10086">我的博客</a>

</body>
</html>

猜你喜欢

转载自blog.csdn.net/progammer10086/article/details/81269124
今日推荐