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