1.外部样式表
link rel="stylesheet" type="text/css" href="bbb.css">
2.内部样式表
<style type="text/css">
p{
color: bisque;
}
</style>
3.内联样式表
<a style="color: blueviolet">hhhh</a>
1.外部样式表
link rel="stylesheet" type="text/css" href="bbb.css">
2.内部样式表
<style type="text/css">
p{
color: bisque;
}
</style>
3.内联样式表
<a style="color: blueviolet">hhhh</a>