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