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