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