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