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