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