blob: a21a990f98d3b1afe1122e535cfe13c95a34ba8a [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
html, body { margin: 0; padding: 0; }
</style>
<body>
<canvas id ="canvas" width="60" height="80" style="position:relative; top:10px; left:20px"></canvas>
<script>
var canvas = document.getElementById('canvas');
var context = canvas.getContext("2d");
context.fillStyle = 'green';
context.fillRect(0, 0, 60, 80);
</script>
</body>
</html>