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