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