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