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