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