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