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