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