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