字體是特定於平台的。在運行不同作業系統(如Windows、Linux或Mac iOS)的不同機器上,您將對網頁有不同的外觀和感覺。在這裡,我們給出了各種作業系統中可用的字體列表。
HTML<font>標記在4.0以後的版本中已被棄用,現在所有字體都是通過使用CSS設置的。下面是設置網頁正文字體的簡單語法。
body { font-family: "new century schoolbook"; } or <body style = "font-family:new century schoolbook;">
Example
<!DOCTYPE html> <html> <head> <title>Font Setting Using CSS</title> </head> <body> <p>Change any of the style and try it.</p> <div style = "font-family:verdana;">This is demo for font family</div> <br /> <div style = "font-size:120%;">This is demo for font size</div> <br /> <div style = "font-size:14pt;">This is demo for font size</div> </body> </html>
這將產生以下結果&負;
Fonts for Microsoft Systems
Font | Font | Font |
---|---|---|
Andale Mono | Arial | Arial Bold |
Arial Italic | Arial Bold Italic | Arial Black |
Comic Sans MS | Comic Sans MS Bold | Courier New |
Courier New Bold | Courier New Italic | Courier New Bold Italic |
Georgia | Georgia Bold | Georgia Italic |
Georgia Bold Italic | Impact | Lucida Console |
Lucida Sans Unicode | Marlett | Minion Web |
Symbol | Times New Roman | Times New Roman Bold |
Times New Roman Italic | Times New Roman Bold Italic | Tahoma |
Trebuchet MS | Trebuchet MS Bold | Trebuchet MS Italic |
Trebuchet MS Bold Italic | Verdana | Verdana Bold |
Verdana Italic | Verdana Bold Italic | Webdings |
您可以在此處檢查示例字體−Microsoft字體示例
Fonts for Macintosh Systems
以下是Macintosh System 7及更高版本支持的字體列表
Font | Font | Font |
---|---|---|
American Typewriter | Andale Mono | Apple Chancery |
Arial | Arial Black | Brush Script |
Baskerville | Big Caslon | Comic Sans MS |
Copperplate | Courier New | Gill Sans |
Futura | Herculanum | Impact |
Lucida Grande | Marker Felt | Optima |
Trebuchet MS | Verdana | Webdings |
Palatino | Symbol | Times |
Osaka | Papyrus | Times New Roman |
Textile | Zapf Dingbats | Zapfino |
Techno | Hoefler Text | Skia |
Hoefler Text Ornaments | Capitals | Charcoal |
Gadget | Sand |
您可以在這裡查看示例字體−mac字體示例
Fonts for Unix Systems
以下是大多數Unix系統變體支持的字體列表
Font | Font | Font |
---|---|---|
Charter | Clean | Courier |
Fixed | Helvetica | Lucida |
Lucida bright | Lucida Typewriter | New Century Schoolbook |
Symbol | Terminal | Times |
Utopia |
您可以在這裡檢查示例字體−unix字體示例
HTML ASCII Codes
有2個7=128個可列印字符,可以用不同的7位ASCII碼表示。另一組字符不是用於HTML表示,而是設計用於控制硬體。
下表列出了所有7位ASCII代碼及其等效的HTML實體代碼。
如果你想看到等效的十六進位、OCT和擴展的ASCII碼集,那麼請檢查下一章。