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