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