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