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