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

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

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
“We ought to take outdoor walks in order that the mind may be strengthened and refreshed by the open air and much breathing.".
Seneca
Random CSS Property

:out-of-range

The :out-of-range CSS pseudo-class represents an <input> element whose current value is outside the range limits specified by the min and max attributes.
:out-of-range css reference