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