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