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