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