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