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