CSS3 9 - CSS3 Web fonts | How to include google fonts to web page? | TTF | OTF | WOFF | SVG | EOT

Опубликовано: 04 Октябрь 2024
на канале: Ankpro Training
714
11

Web Fonts
How to include google fonts to web page?

Different types of web font formats:
TrueType Fonts (TTF)
OpenType Fonts (OTF)
The Web Open Font Format (WOFF)
SVG Fonts/Shapes
Embedded OpenType Fonts (EOT)

Web Fonts Property :
font-family
src
font-weight
font-style
font-stretch

Web fonts demo code :
@font-face{
font-family: myfont;
src:url(sansation_light.woff)
}
h1{font-family: myfont; }
p{font-family: 'Charm', cursive;}
h2{font-family: 'Staatliches', cursive;}