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