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