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