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