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