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