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