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