FINALS* INTERACTIVE Ex 10: Counting Drill
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> Counting Game </title> <style> html { font-family: cursive; margin-left: 4%; background-color: #91fc44; } body { max-width: 800px; min-width: 480px; } fieldset { background-color: pink; } button { background-color: #6aff00; color: black; border-radius: 10px; width: 100px; height: 40px; } </style> </head> <body> <h1>Let's Count!</h1> <p> Let's count the shapes on the screen! </p> <fieldset> <canvas id="myCanvas" width="1200" height="300" style="border:none;"> </canvas> <label> How many shapes do you see? </label> <input type="number" id="answer"> </input> <!-- <button id="colors" onclick="colors()" > Colors </button> --...