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