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