1,内联样式写法
<p style="color:red;"></p>
2,外联样式写法
<link href="你的css文件地址" rel="stylesheet" type="text/css"></link>
3,嵌套样式写法
在html界面<head>里面写一下代码
<style type="text/css">
.p{
color:red;
}
</style>
1,内联样式写法
<p style="color:red;"></p>
2,外联样式写法
<link href="你的css文件地址" rel="stylesheet" type="text/css"></link>
3,嵌套样式写法
在html界面<head>里面写一下代码
<style type="text/css">
.p{
color:red;
}
</style>