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