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