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