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