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