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