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