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