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