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