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