Activity 3 Counting Drill Game
<!DOCTYPE html> <html> <head> <title> Activity 3 Counting Drill Game </title> <style> box-sizing: border-box; } h1.font1 { margin-left: 10%; } fieldset { width: 25%; background-color: #e1eff2; padding-left: 50px; padding-right: 50px; padding-bottom: 5%; margin-top: 20px; margin-left: 18%; border-style: dashed; border-width: 5px; border-color: brown; text-align: center; } </style> </head> <body> <fieldset> <h1 style="font-family:'Comic san'">Activity 3 Counting Drill Game </h1> <h2 style="font-family:'Comic san'">Count how many square on the screen! </h2> <canvas id="myCanvas" width="900" height="200" style="border:none;"> </canvas> <p id="demo" class="demo"> </p> <label> How many shapes do you see? </label> <input type="number" id="answer"> </...