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