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