梦之都
CSS教程
,
font-family
示例,使用宋体.
使用arial字体.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS font-family 属性示例</title> <style type="text/css" media="all"> p#songti { font-family:"宋体"; } p#Arial { font-family:Arial; } p#all { font-family:"宋体",Arial; } </style> </head> <body> <p id="songti">梦之都
CSS教程
,<strong>
font-family
</strong>示例,使用宋体.</p> <p id="Arial">使用arial字体.</p> </body> </html>