DevelopPHP
home Forum gear home

Libraries book

HTML Library CSS Library JavaScript Library PHP Library

Videosbook

PHP and MySQL JavaScript HTML and CSS Vector and 3D Flash Actionscript Android Dev Miscellaneous

Resourcesbook

Website Hosting
CSS font-family example   Share / Like

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.

 

Home   •   Terms of Use   •   Developer Forums   •   T-Shirts   •   RSS   •   Classroom Chalkboard   •   Donate   •   Top ↑
Popular In PHP / MySQL E-Commerce Store Production
Social Network Website Building
Image Upload / Photo Processing
CMS Software Programming
Mass Email Systems
Magic XML Data
Search Programming
Popular In JavaScript JSON Programming
Ajax Programming
Animating Elements
WYSIWYG Programming
Date/Time Programming
DOM Scripting
Object Reference
Popular In HTML Canvas Element
New Form Elements
Audio Element
Video Element
Drag and Drop
Event Handling
Element Grouping
Popular In CSS Custom Font Embedding
Dynamic Fit Backgrounds
Theatre Mode
Box Overlays
CSS Level 1 Properties
CSS Level 2 Properties
CSS Level 3 Properties
©2013 DevelopPHP   |   Navigate to related domains HTML5