<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creeper</title>
</head>
<body>
<canvas width="600" height="400"></canvas>
<script>
let canvas = document.querySelector('canvas')
let context = canvas.getContext('2d')
context.fillStyle = 'darkgreen'
context.fillRect(0,0,350,300)
context.fillStyle = 'black'
context.fillRect(50,60, 90, 90)
context.fillRect(210, 60, 90, 90)
context.fillRect(140,150, 70,100)
context.fillRect(100,190, 40,110)
context.fillRect(210,190, 40,110)
</script>
</body>
</html>