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