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