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