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