官方
优秀网站
Appearance
内联样式表 💡
<标签 style="样式属性:样式值"></标签> <h2 style="color:red">css教程</h2>
试一试
内部样式表 💡
.html文件head标签中
<style type="text/css"> h3{ color:blue; } </style>
外部样式表 💡
<link rel="stylesheet" type="text/css" href="xx.css">