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