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