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