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