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