使用CSS设置字体系列

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>