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