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