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