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