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