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