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