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