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