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