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