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