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