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