font-family property
Specifies the font face for text.
The font-family property is a comma separated list of font family names.
There are generic family names and others.
The generic family names are supported by all browsers on all platforms, other family names are not necessarily.
If you specify more than one font family, the browser will use the first from left to right that can be recognized.
For that reason, always use a generic family name at the last position of the fonts.
Family names containing whitespace must be quoted!
JavaScript page for this property: fontFamily. You can find other example(s) there. |
Possible values:
One of the following values: | ||||||||||||||||||
|
Description of values:
Some cursive fonts: Adobe Poetica, Caflisch Script, Sanvito, ... | |||||||
Some fantasy fonts: Alpha Geometrique, Critter, Cottonwood, ... | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
Some monospace fonts: Courier, MS Courier New, Prestige, ... | |||||||
for example: Arial, Tahoma, 'Times New Roman', Verdana, -moz-fixed, ... | |||||||
Some sans-serif fonts: MS Arial, MS Tahoma, MS Verdana, Helvetica, ... | |||||||
Some serif fonts: Times New Roman, MS Georgia, Bodoni, Garamond, ... |
Default: this property has no default value.
Example HTML code 1:
This example illustrates the use of the font-family property:
|
||||
<head> <style> .example1 { font-family: Tahoma, Verdana, serif; } .example2 { font-family: Verdana, "Times New Roman", sans-serif; } </style> </head> <body> <span class="example1">font-family: Tahoma, Verdana, serif;</span> <br /> <span class="example2">font-family: Verdana, "Times New Roman", sans-serif;</span> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by tags:
a, abbr, acronym, address, b, baseFont, bdo, big, blink, blockQuote, body, button, caption, center, cite, code, col, colGroup, dd, del, dfn, dir, div, dl, dt, em, fieldSet, font, form, H1, H2, H3, H4, H5, H6, html, i, input:button, input:file, input:password, input:reset, input:search, input:submit, input:text, ins, isIndex, kbd, label, legend, li, listing, marquee, menu, nobr, ol, optGroup, option, p, plainText, pre, q, rt, ruby, s, samp, select, small, span, strike, strong, sub, sup, table, tBody, td, textArea, tFoot, th, tHead, tr, tt, u, ul, var, xmp
Related pages:
color
font
font-size
font-size-adjust
font-style
font-variant
font-weight
text-align
text-align-last
text-autospace
text-decoration
text-indent
text-justify
text-kashida-space
text-overflow
text-shadow
text-transform
text-underline-position
font
font-size
font-size-adjust
font-style
font-variant
font-weight
text-align
text-align-last
text-autospace
text-decoration
text-indent
text-justify
text-kashida-space
text-overflow
text-shadow
text-transform
text-underline-position
External links:
font-family (MSDN)
font-family (Mozilla Developer Center)
font-family (Safari Reference Library)
font-family (W3C)
font-family (Mozilla Developer Center)
font-family (Safari Reference Library)
font-family (W3C)
User Contributed Comments