blob: d8b17f17701e8dd58a649b17f66735f24a8d15dc [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<canvas id="canvas" width="700" height="500" style="width: 700px; height; 500px;"></canvas>
<script>
let canvas = document.getElementById("canvas");
let context = canvas.getContext("2d");
context.fillStyle = "magenta";
context.fillRect(300, 120, 100, 100);
context.fillStyle = "aqua";
context.fillRect(320, 120, 20, 100);
context.fillStyle = "green";
context.fillRect(300, 220, 300, 100);
</script>
</body>
</html>