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