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