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