Use on the webTotal Use [ 3655 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/7da7875668d6e3964fd33624ad80e1ac?family=FSP+DEMO+-+Osbourne+01+Light" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/7da7875668d6e3964fd33624ad80e1ac?family=FSP+DEMO+-+Osbourne+01+Light);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FSP DEMO - Osbourne 01 Light";
src: url("https://db.onlinewebfonts.com/t/7da7875668d6e3964fd33624ad80e1ac.eot");
src: url("https://db.onlinewebfonts.com/t/7da7875668d6e3964fd33624ad80e1ac.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/7da7875668d6e3964fd33624ad80e1ac.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/7da7875668d6e3964fd33624ad80e1ac.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/7da7875668d6e3964fd33624ad80e1ac.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/7da7875668d6e3964fd33624ad80e1ac.svg#FSP DEMO - Osbourne 01 Light")format("svg");
}
2CSS rules to specify fonts
font-family: "FSP DEMO - Osbourne 01 Light";