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