Fonts Reference

Fonts are specific to platform. You will have different look and feel of a web page on different machines running different operating systems like Windows, Linux or Mac iOS. Here we are giving a list of fonts which are available in various operating systems.

HTML <font> tag is deprecated in version 4.0 onwards and now all fonts are set by using CSS. Here is the simple syntax of setting font of a body of web page.

body{font-family:"new century schoolbook";}

or

<body style = "font-family:new century schoolbook;">

Example

Let’s look at the basic example of the usage of the fonts in the HTML document

<!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>

When we run the above code, the output window will pop up displaying the text with different fonts displayed on the webpage.

Fonts for Microsoft Systems

Following are the fonts for Microsoft Systems listed below −

FontFontFont
Andale MonoArialArial Bold
Arial ItalicArial Bold ItalicArial Black
Comic Sans MSComic Sans MS BoldCourier New
Courier New BoldCourier New ItalicCourier New Bold Italic
GeorgiaGeorgia BoldGeorgia Italic
Georgia Bold ItalicImpactLucida Console
Lucida Sans UnicodeMarlettMinion Web
SymbolTimes New RomanTimes New Roman Bold
Times New Roman ItalicTimes New Roman Bold ItalicTahoma
Trebuchet MSTrebuchet MS BoldTrebuchet MS Italic
Trebuchet MS Bold ItalicVerdanaVerdana Bold
Verdana ItalicVerdana Bold ItalicWebdings

Fonts for Macintosh Systems

Following is the list of fonts supported by Macintosh System 7 and higher versions.

FontFontFont
American TypewriterAndale MonoApple Chancery
ArialArial BlackBrush Script
BaskervilleBig CaslonComic Sans MS
CopperplateCourier NewGill Sans
FuturaHerculanumImpact
Lucida GrandeMarker FeltOptima
Trebuchet MSVerdanaWebdings
PalatinoSymbolTimes
OsakaPapyrusTimes New Roman
TextileZapf DingbatsZapfino
TechnoHoefler TextSkia
Hoefler Text OrnamentsCapitalsCharcoal
GadgetSand

Fonts for Unix Systems

Following is the list of fonts supported by most Unix System variants

FontFontFont
CharterCleanCourier
FixedHelveticaLucida
Lucida brightLucida TypewriterNew Century Schoolbook
SymbolTerminalTimes
Utopia

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *