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