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