I need someone to help create a reading game for elementary
I need someone to help create a reading game for elementary school kids preferably with a timer counting down. I really dont know where to start. I was hoping somone could push me in the right direction on making. It has to be in HTML and you can use JavaScript
Solution
// This is a simpel game hope can get an idea to build the game
<html>
<head>
<script type=\"text/javascript\">
click=0;
function func(link)
{
document.getElementById(\"app\").src=link;
click++;
if(click>1)
clearTimeout(timer);
onTimer();
}
i=60;
function onTimer() {
document.getElementById(\'time\').innerHTML = i;
i--;
if (i < 0) {
alert(\"Time out Kid\");
}
else {
timer= setTimeout(onTimer, 1000);
}
}
</script>
</head>
<body>
<center>
<h1 style=\"color:blue;\">Lets Play The Game </h1>
<div float=\"left\">
<table border=\"3\" hieght=\"200\" width=\"300\">
<tr><td onclick=\"func(\'https://pixabay.com/static/uploads/photo/2013/07/13/11/34/apple-158419_960_720.png\')\"><b>Apple</b></td><td onclick=\"func(\'https://s-media-cache-ak0.pinimg.com/236x/07/c3/45/07c345d0eca11d0bc97c894751ba1b46.jpg\')\"><b>Cat</b></td></tr>
<tr><td onclick=\"func(\'http://kids.nationalgeographic.com/content/dam/kids/photos/articles/Nature/A-G/bat-myths-silo.jpg.adapt.945.1.jpg\')\"><b>Bat</b></td><td onclick=\"fucn(\'http://pestworldforkids.org/media/18850/Roof-Rat_iStock_000005484522Large5B15D.jpg\')\"><b>Rat</b></td></tr>
</table>
</div>
<div float=\"left\">
<img id=\"app\" src=\"sdsd.png\" hieght=\"150\" width=\"150\">
</div>
<div id=\"time\">
</div>
</center>
</body>
</html>
