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