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