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