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