Sorce code of this game : <!DOCTYPE html> <html> <head> <title>Basic Breakout HTML Game</title> <meta charset="UTF-8"> <style> html, body { height: 100%; margin: 0; } body { background: black; display: flex; align-items: center; justify-content: center; } </style> </head> <body> <canvas width="400" height="500" id="game"></canvas> <script> const canvas = document.getElementById('game'); const context = canvas.getContext('2d'); // each row is 14 bricks long. the level consists of 6 blank rows then 8 rows // of 4 colors: red, orange, green, and yellow const level1 = [ [], [], [], [], [], [], ['R','R','R','R','R','R','R','R','R','R','R','R','R','R'], ['R','R','R',...