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