Answers for "html make a cube"

0

html make a cube

<canvas id="myCanvas">Your browser doesn't support the canvas tag :(</canvas>
<script>
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.fillStyle = "#FF0000"; // Color of cube
ctx.fillRect(0, 0, 50, 50);
</script>
Posted by: Guest on May-28-2021

Browse Popular Code Answers by Language