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