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