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