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