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