font-family
Quick Summary for font-family (@font-face)
The font-family CSS descriptor allows authors to specify the font family for the font specified in an @font-face rule.
Code Usage for font-family (@font-face)
/* <string> values */ font-family: "font family"; font-family: 'another font family';  /* <custom-ident> value */ font-family: examplefont; 
More Details for font-family (@font-face)

font-family

The font-family CSS descriptor allows authors to specify the font family for the font specified in an @font-face rule.

Syntax

/* <string> values */ font-family: "font family"; font-family: 'another font family';  /* <custom-ident> value */ font-family: examplefont; 

Values

<family-name>

Specifies the name of the font family.

Formal definition

Related at-rule@font-face
Initial valuen/a (required)
Computed valueas specified

Formal syntax

<family-name>

where <family-name> = <string> | <custom-ident>+

Examples

Setting the font family name

@font-face {   font-family: examplefont;   src: url('examplefont.ttf'); } 

Specifications

Specification
CSS Fonts Module Level 4 # font-family-desc

See also

font-display font-stretch font-style font-weight font-variant font-feature-settings font-variation-settings src unicode-range

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)EspañolFrançais日本語Русский中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
The mind must be given relaxation; it will arise better and keener after resting. As rich fields must not be forced-for their productiveness, the have no rest, will quickly exhaust them constantlabor will break the vigor of the mind, but if it is released and relaxed a little while, it will recover its powers
Seneca
Random CSS Property

text-combine-upright

The text-combine-upright CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
text-combine-upright css reference