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