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