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