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