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