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