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