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