BlaBla.cn 网页教程与代码的中文站点
最近更新日期:2007-04-30 作者:布啦布啦 参考来源:www.BlaBla.cn 布啦布啦网页教程与代码
网站首页
>
CSS 教程与实例代码
>
CSS 代码实例
>
CSS 字体属性实例
> 字体名称属性(font-family)
编辑文本后点击显示结果
Blabla.cn
<html> <head> <title>字体名称属性 font-family</title> <STYLE> .s1 {font-family:Arial} .s2 {font-family:Tahoma} .s3 {font-family:Courier} .s4 {font-family:Verdana} .s5 {font-family:"Book Antiqua"} </STYLE> </head> <body> <p>The font-family value of the text is the browser default font.</p> <p class = "s1">The fon-family value of the text is "Arial"。</p> <p class = "s2">The fon-family value of the text is "Tahoma"。</</p> <p class = "s3">The fon-family value of the text is "Courer"。</</p> <p class = "s4">The fon-family value of the text is "Verdana"。</</p> <p class = "s5">The fon-family value of the text is "Book Antiqua"。</</p> </body> </html>
© 2005-2008 BlaBla.cn 版权所有