Use on the webTotal Use [ 5498 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b09c3424f85d36f48c3a26c6cea93105?family=FSP+DEMO+-+Blunt+SemiCon" 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/b09c3424f85d36f48c3a26c6cea93105?family=FSP+DEMO+-+Blunt+SemiCon);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FSP DEMO - Blunt SemiCon";
src: url("https://db.onlinewebfonts.com/t/b09c3424f85d36f48c3a26c6cea93105.eot");
src: url("https://db.onlinewebfonts.com/t/b09c3424f85d36f48c3a26c6cea93105.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b09c3424f85d36f48c3a26c6cea93105.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b09c3424f85d36f48c3a26c6cea93105.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b09c3424f85d36f48c3a26c6cea93105.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b09c3424f85d36f48c3a26c6cea93105.svg#FSP DEMO - Blunt SemiCon")format("svg");
}
2CSS rules to specify fonts
font-family: "FSP DEMO - Blunt SemiCon";