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