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