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