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