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