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