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