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