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