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