<link rel="stylesheet" type="text.css" href="my.css"/>
rel 连接的文件与html文档之间的关系
type 文件类型
href 指向链接的css文件
这是最常用的引入方式,这种方法可以将css写入一个文档直接放在一个文件夹中,即将html与css分离开来。
2.在html文档的head部分直接写入css文档
p {font-size:20pxcolor:blue}
3.在标签中直接加入
<div style="border:2px yellow solid">
4.使用@improt引入
<style type="text/css">
@import url("css/test.css")
</style>