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