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