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