mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 11:23:07 +09:00
14 lines
291 B
HTML
14 lines
291 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<canvas id="canvas"></canvas>
|
|
<script>
|
|
var c = canvas.getContext('2d');
|
|
c.font = "8pt sans-serif";
|
|
c.textAlign = "center";
|
|
c.textBaseline = "middle";
|
|
c.fillStyle = "white";
|
|
c.fillText("Test Text", canvas.width / 2, canvas.height / 2);
|
|
</script>
|
|
</body>
|
|
</html>
|