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