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