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