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