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