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