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