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