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