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