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