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