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