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