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