Appearance
通过选择器找到元素,并给元素添加样式
标签选择
<h1 >1级标题</h1>
h1{ color: cornflowerblue; }
类选择器
<h1 class="colorblue">1级标题</h1> <h2 class="colorblue">2级标题</h2>
.colorblue{ color: cornflowerblue; }
id选择器
<h3 id="idh3">3级标题</h3>
#idh3{ color: green; }