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