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