27 lines
519 B
HTML
27 lines
519 B
HTML
<!DOCTYPE html>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<style>
|
|
@font-face {
|
|
font-family: test;
|
|
/* WhiteOnBlack CFF2 font from https://github.com/adobe-fonts/white-on-black-vf,
|
|
licensed under the SIL Open Font License version 1.1 */
|
|
src: url(WhiteOnBlack.otf);
|
|
}
|
|
div {
|
|
font: 40px test;
|
|
}
|
|
</style>
|
|
|
|
<div>㊎</div>
|
|
|
|
<canvas id="c"></canvas>
|
|
|
|
<script>
|
|
document.fonts.ready.then(() => {
|
|
var ctx = document.getElementById("c").getContext("2d");
|
|
ctx.font = "40px test";
|
|
ctx.fillText("\u328E", 0, 100);
|
|
});
|
|
</script>
|