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