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