/ Published in: CSS
Summary
@font-face allows authors to specify online fonts to display text on their webpages. By allowing authors to provide their own fonts, @font-face eliminates the need to depend on the limited number of fonts users have installed on their computers.
Syntax
@font-face {
font-family: ;
src: [,]*;
[font-weight: ];
[font-style: ];
}
Values
Specifies a font name that will be used as font face value for font properties.
URL for the remote font file location, or the name of a font on the user's computer in the form local("Font Name").
A font weight value.
A font style value.
You can specify a font on the user's local computer by name using the local() syntax. If that font isn't found, other sources will be tried until one is found.
@font-face allows authors to specify online fonts to display text on their webpages. By allowing authors to provide their own fonts, @font-face eliminates the need to depend on the limited number of fonts users have installed on their computers.
Syntax
@font-face {
font-family: ;
src: [,]*;
[font-weight: ];
[font-style: ];
}
Values
Specifies a font name that will be used as font face value for font properties.
URL for the remote font file location, or the name of a font on the user's computer in the form local("Font Name").
A font weight value.
A font style value.
You can specify a font on the user's local computer by name using the local() syntax. If that font isn't found, other sources will be tried until one is found.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
@font-face { font-family: <a-remote-font-name>; src: <source> [,<source>]*; [font-weight: <weight>]; [font-style: <style>]; }
URL: https://developer.mozilla.org/index.php?title=En/CSS/%40font-face