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