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