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