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