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