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