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