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