1.顏色:color
<style>
h2 {
color:red;
}
</style>
或:
<style>
.red-text {
color: red;
}
</style>
<h1 class="red-text">文本</h1>
2.字號(hào):font-size
<style>
h1 {
font-size: 30px;
}
</style>
3.字體:font-family
<style>
h2 {
font-family: Sans-serif;
}
</style>
4.link標(biāo)簽來引入谷歌Lobster字體熙暴。
<link rel="stylesheet" type="text/css">
link標(biāo)簽解析:http://www.w3school.com.cn/tags/tag_link.asp
5.當(dāng)某種字體不可用時(shí)掀亩,你可以讓瀏覽器自動(dòng)降級(jí)到另一種字體互站。
p {
font-family: Helvetica, Sans-Serif;
}
當(dāng) Helvetica不可用時(shí),會(huì)降級(jí)使用Sans-Serif
一般瀏覽器都支持:Monospace、Serif和Sans-Serif字體.