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