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