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