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