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