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