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