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