<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>文字控制 ,對於文字有沒有其餘屬性,查手冊研究用法</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="布爾教育 http://www.itbool.com" />
<style>
#d1{
color: blue;
font-style: italic;/*斜體*/
font-weight: bold; /*粗體*/
font-size: 23px;/*字體大小 */
line-height: 46px;/*變換行高*/
font-family: "微軟雅黑",sans-serif;/*變換字體*/
}
/**微軟雅黑 sans-serif
宋體 seirf
兩類字體,最多見的字體放後面
*/
#d2{
font-family: "New Times","新宋體",seirf;
}
</style>
</head>
<body>
<div id="d1">野火燒不盡,春風吹又生</div>
<div id="d2">野火燒不盡,春風吹又生</div>
</body>
</html>html