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