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