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