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