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