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