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