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