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