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