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