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