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