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>
廣告