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