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