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