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