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