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