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