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