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