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