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