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