In this tutorial, we will create a pong game written in vanilla JavaScript and rendered on HTML.The HTML document structure is quite minimal, as the game will be rendered entirely on the element.To actually be able to render graphics on the element, first we have to grab a reference to it in JavaScript.To keep constantly updating the canvas drawing on each frame, we need to define a drawing function that will run over and over again.