mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 12:23:08 +09:00
15 lines
324 B
HTML
15 lines
324 B
HTML
<html>
|
|
<script>
|
|
function load() {
|
|
var ctx = document.getElementById("canvas").getContext("2d");
|
|
|
|
ctx.font = "bold 12px sans-serif";
|
|
ctx.scale(4, 4);
|
|
var str = "HeHeHeHe";
|
|
ctx.fillText(str, 0, 15);
|
|
}
|
|
</script>
|
|
<body onload="load();">
|
|
<canvas id="canvas" width="400" height="200"></canvas>
|
|
</body>
|
|
</html>
|