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