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