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