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