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