Web安全字体

来源:互联网 发布:搜狗seo关键词优化 编辑:程序博客网 时间:2024/05/17 16:16

在Web编码中,CSS默认应用的Web字体是有限的,虽然在新版本的CSS3,

我们可以通过新增的@font-face属性来引入特殊的浏览器加载字体,但多数情况下,

考虑各个因素的影响我们还是在尽量充分利用这些默认调用的字体实现CSS的编写,

这里整理了19个Web安全字体,让你无需任何顾虑的情况下畅快使用。


1.Arial

Arial

CSS写法:font-family: Arial, Helvetica, sans-serif;


2.Arial Black

Arial-Black

CSS写法:font-family: ‘Arial Narrow’, sans-serif;


3.Arial Narrow

Arial-Narrow

CSS写法:font-family: ‘Arial Narrow’, sans-serif;


4.Verdana

Verdana

CSS写法:font-family: Verdana, Geneva, sans-serif;


5.Georgia

Georgia

CSS写法:font-family: Georgia, serif;


6.Times New Roman

Times-New-Roman

CSS写法:font-family: ‘Times New Roman’, Times, serif;


7.Trebuchet MS

Trebuchet-MS

CSS写法:font-family: ‘Trebuchet MS’, Helvetica, sans-serif;


8.Courier

Courier

CSS写法:font-family: Courier, monospace;


8.Courier New

Courier-New

CSS写法:font-family: ‘Courier New’, Courier, monospace;


9.Impact

Impact

CSS写法:font-family: Impact, Charcoal, sans-serif;


10.Comic Sans MS

Comic-Sans-MS

CSS写法:font-family: ‘Comic Sans MS’, cursive;


11.Tahoma

Tahoma

CSS写法:font-family: Tahoma, Geneva, sans-serif;


12.Lucida Sans Unicode

CSS写法:font-family: ‘Lucida Sans Unicode’, ‘Lucida Grande’, sans-serif;


13.Lucida Console

Lucida-Console

CSS写法:font-family: ‘Lucida Console’, Monaco, monospace;


14.Garamond

Garamond

CSS写法:font-family: Garamond, serif;


15.MS Sans Serif

MS-Sans-Serif

CSS写法:font-family: ‘MS Sans Serif’, Geneva, sans-serif;


16. MS Serif

CSS写法:font-family: ‘MS Serif’, ‘New York’, sans-serif;


17. Palatino Linotype

Palatino-Linotype

CSS写法:font-family: ‘Palatino Linotype’, ‘Book Antiqua’, Palatino, serif;


18. Symbol

Symbol

CSS写法:font-family: Symbol, sans-serif;


19. Bookman Old Style

Bookman-Old-Style

CSS写法:font-family: ‘Bookman Old Style’, serif;

文章来源:http://www.kuqin.com/webpagedesign/20100118/78066.html

0 0