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