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