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