mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 11:53:07 +09:00
12 lines
258 B
HTML
12 lines
258 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<body style="background:white">
|
|
<canvas id="c" width="500" height="500"></canvas>
|
|
<script>
|
|
var ctx = c.getContext('2d');
|
|
ctx.fillStyle = "black";
|
|
ctx.font = "50px sans-serif";
|
|
ctx.fillText("Hello", 200, 200);
|
|
</script>
|
|
</body>
|
|
</html>
|