font-family

font-family
CSS font-family Property
The CSS font-family property is used to define a font family for an element. It will also affect any child elements of the specified element.
CSS CODE EXAMPLE
<style type="text/css">
p {
    font-size:18px;
}
#p1 {
    font-family: "Comic Sans MS", "Trebuchet MS", Arial;
}
#p2 {
    font-family: "Arial Black", Impact, Verdana;
}
#p3 {
    font-family: Georgia, "Times New Roman", serif;
}
</style>
<p id="p1">paragraph content ...</p>
<p id="p2">paragraph content ...</p>
<p id="p3">paragraph content ...</p>
 
paragraph content ...
paragraph content ...
paragraph content ...
TIP: Setting multiple fonts in a comma separated list is done to set fallback fonts just in case the user does not have the primary font you specify installed on their computer.

Possible Values:

Arial •• Verdana •• Helvetica •• Gadget •• Fantasy •• Impact •• Courier •• Times
Tahoma •• Geneva •• Georgia •• monospace •• sans-serif •• serif
"Arial Black" •• "Comic Sans MS" •• "Times New Roman" •• "Courier New" •• "Trebuchet MS"

(the fonts listed above are popular and standard types of fonts)

Related Material:
CSS Embed Custom Font HTML Tutorial for Cool Special Web Site Text
A webmaster can embed unique fancy fonts into web pages to assure they are seen by all. Assure that your unique looking font is seen by all regardless if they have it installed on their machine or not. There are a tons of fantastic fonts that web designers can install on their computer and specify them as fonts on their web pages easily enough. But in order to see a particular font on your web page the user viewing your page must also have that font installed to their fonts folder on their computer or device unless you embed the font.

0 Response to "font-family"

Post a Comment