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