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