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