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