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