Horje
html make a cube Code Example
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>




Html

Related
page auto refresh Code Example page auto refresh Code Example
html content in rectangle Code Example html content in rectangle Code Example
background position in html Code Example background position in html Code Example
color de las letras en html Code Example color de las letras en html Code Example
how to make text move in html Code Example how to make text move in html Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8