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