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