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