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