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