CSS 用来控制字形的性质是 font-family. 你可以用它来决定任何一个元素中文字的字形. 比如
P.v {font-family: Verdana}
H2.a {font-family: arial}
This H2's font is "Times New Roman"
This paragraph is using "Verdana" font
有的时候, 你所给的字体浏览器不见得有,你可以多给几种比如
P {font-family: Verdana, Forte, "Times New Roman"}
上面这个定义可以使得浏览器先用Verdana, 如果没有就用Forte...
记住每个字形之间要用逗号隔开.
大小用来控制字体大小的性质是 font-size 比如
P.f12 {font-size: 12pt}
P.f18 {font-size: 18pt}
This paragraph's font is 12pt