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