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