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