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