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