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