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