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