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