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