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