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;}