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