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