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