Act3
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> Counting Drill Game </title> <style> body { max-width: 200px; min-width: 580px; } fieldset { background-color: white; margin: auto; align-content: center; padding: 60px; width: 100px; height: 600px; } buon { background-color: darkcyan; color: darkcyan; border-radius: 10px; width: 100px; height: 50px; } .demo{ background-color:white; color:darkgrey; font-size: 20px; } html { font-family: arial; margin-left: 4%; background-color: darkcyan; } </style> </head> <body> <h1> Counting Drill Game</h1> <p> Count how many square on the screen! </p> <fieldset> <canvas id="myCanvas" width="900" height="200" style="border:none;"> </canvas> <p id="demo" class="demo"> </p> <label> How ma...