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