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