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