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