html+css实战46-css引入方式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>基本骨架</title>
    <!-- 外部引入css -->
    <link rel="stylesheet" href="./my.css">
</head>
<style>
    p{
        color: red;
    }
</style>
<body>

    <p>我是歌谣</p>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/geyaoisnice/article/details/125054623