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