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