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