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