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