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