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