html笔记04:在html之中导入css两种常见方法

1.导入式:

<html>
<head>
<title></title>
<style type="text/css">
    @import url("style.css");
</style>    
</head>

</html>

2.连接式:

<html>
<head>
<title></title>
<link  rel="stylesheet" href="mystyle.css" type="text/css" />
</head>

</html>
原文地址:https://www.cnblogs.com/hebao0514/p/4701950.html