What is the Canvas?

Setting up the Canvas

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Canvas Basics</title>
    <style>
      canvas {
        border: 1px solid #000;
      }
    </style>
  </head>
  <body>
    <canvas id="myCanvas" width="500" height="400"></canvas>
    <script src="index.js"></script>
  </body>
</html>

Drawing Context

Basic Drawing Shapes

  1. Rectangles