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