CSS 中 font-family 属性的使用
font-family 属性用于更改字体的样式。可能的值可以是任何字体系列名称。
<html> <head> </head> <body> <p style = "font-family:georgia,garamond,serif;"> This text is rendered in either georgia, garamond, or the default serif font depending on which font you have at your system. </p> </body> </html>
广告