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