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