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