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