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