mirror of
https://github.com/zen-browser/desktop.git
synced 2026-08-03 05:38:54 +00:00
12 lines
233 B
HTML
12 lines
233 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<canvas id="c" width="200" height="100"></canvas>
|
|
<script>
|
|
const ctx = document.getElementById("c").getContext("2d");
|
|
ctx.fillStyle = "red";
|
|
ctx.fillRect(0, 0, 200, 100);
|
|
</script>
|
|
</body>
|
|
</html>
|