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