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