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