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