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