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