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