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