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