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