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