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