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