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