Last Updated: February 25, 2016
·
1.625K
· noammize

@Font-Face

A lot of times the regular internet fonts doesn't do the job. Use CSS and Font Face in order to bring your own fonts to the site!

Example to @Font-Face:
@font-face { font-family: 'Myriad Pro'; src: url('MyriadPro.otf'); }

Then just use the font the same regular way you would use one!

Example:
h3 {font-family:Myriad Pro;}

Good luck!