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