Web Fonts
- Web fonts allow web designers to use fonts that are not installed on the user's computer.
- Free font or purchased font, just include the font file on your web server, and it will be automatically downloaded to the user when needed.
- TrueType Fonts (TTF)
- OpenType Fonts (OTF)
- Embedded OpenType Fonts (EOT)
- Web Open Font Format (WOFF)
- Web Open Font Format (WOFF 2.0)
Fonts Reference
Font-Face
@font-face {
font-family: sansation;
src: url(sansation_light.woff);
font-weight: normal;
}
@font-face {
font-family: sansation;
src: url(sansation_bold.woff);
font-weight: bold;
}
p {
font-family: sansation;
}