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