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