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