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