Drawing on a Canvas To make your HTML Code act like a canvas you must first use <canvas id="MyCanvas" width="1080" Height="720" style="border:1px solid #4f1802 ;"> To Establish a canvas, i chose the standard 1080, 720px resolution. once the canvas has been established, you can now draw on it. var canvas = document.getElementById("MyCanvas"); var ctx = canvas.getContext("2d"); ctx.globalAlpha = 1 Is also the ID if your canvas, to make it identify as a Canvas. ctx.fillStyle = "#a6471e"; ctx.fillRect(500,110,280,350); ctx.fillStyle = "#fac087"; ctx.fillRect(480,100,230,300); ctx.fillStyle = "#17fc03"; ctx.fillRect(500,50,300,50); Each one acts as a layer, the one on top is the top layer so it will cover everything underneath it. Counting Drill To establish the UI or Fieldset first you need to do <canvas id="myCanvas" width="1200" height=...