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