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