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