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