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