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