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