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