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