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