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