1)外部样式表插入:即通过一个外部的css文件,来对样式进行修改
<link rel = "stylesheet" type = "text/css" href = "mystyle.css">
2)内部样式表
<style type = "text/css" >
body {background-color : 颜色代码}
p{color : 颜色代码}
</style>
3)内联样式表
<p style = "color = red" >我的文字</p>
1)外部样式表插入:即通过一个外部的css文件,来对样式进行修改
<link rel = "stylesheet" type = "text/css" href = "mystyle.css">
2)内部样式表
<style type = "text/css" >
body {background-color : 颜色代码}
p{color : 颜色代码}
</style>
3)内联样式表
<p style = "color = red" >我的文字</p>