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