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