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