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