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