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