-
Notifications
You must be signed in to change notification settings - Fork 1
/
where-ami.html
executable file
·75 lines (60 loc) · 3.11 KB
/
where-ami.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Toddler Fun Area | Games: Memory</title>
<meta name="Description" content="Preschool Learning Games For Kids. Games designed to stimulate their learning and memory skills.">
<meta name="Keywords" content="toddler, kids, online games, educational games, learning, learning for kids">
<meta name="Author" content="Vidya Ramakrishnan">
<meta property="fb:admins" content="525114057" />
<meta name="google-site-verification" content="zbogXOPXwvev4tRyqMj75yDAQYRhF3UjzFS-8RNly8M" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/mystylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/game4.css" media="screen">
<!--[if IE]> <html class="ie"> <![endif]-->
<script type="text/javascript" src="java_script/jquery.js"></script>
<script type="text/javascript" src="java_script/game4.js"></script>
</head>
<body>
<div class="container cf">
<nav>
<ul class="side-nav">
<li><a href = "home.html" class="nav_home_img"><img src="images/bird.png" alt="Bird"></a></li>
<li><a href = "games.html" class="nav_games_img"><img src="images/cat_nav.png" alt="Cat"></a></li>
<li><a href = "learning.html" class="nav_learning_img"><img src="images/butterfly.png" alt="Butterfly"></a></li>
<li><a href = "me.html" class="nav_me_img"><img src="images/sunflower.png" alt="Sunflower"></a></li>
</ul>
</nav>
<div class="main_content cf">
<h3>Memory Game</h3>
<p class="note"><strong>Instructions</strong>: Click on "Play" to start the game. Memorize the cards. The cards set closes after a small interval and a single card will be shown. Identify the same card from the set.</p>
<div class="cards" id="display">
<img src="images/game4/close.png" id="0" alt="card">
<img src="images/game4/close.png" id="1" alt="card">
<img src="images/game4/close.png" id="2" alt="card">
<img src="" id="3" class="off" alt="card">
<img src="" id="4" class="off" alt="card">
<img src="" id="5" class="off" alt="card">
<img src="" id="6" class="off" alt="card">
<img src="" id="7" class="off" alt="card">
<img src="" id="8" class="off" alt="card">
</div>
<div class="show-card">
<a title="Open Clip Art Library [Public domain] via Wikimedia Commons" href="http://commons.wikimedia.org/wiki/Open_Clip_Art_Library" target="_blank">
<img src="" id="test" class="off" alt="card"></a>
</div>
<div class="button-box">
<button class="game-button transition" id="start">Play</button>
</div>
<div id="win-img" class="off">
<img src ="images/win.png" alt = "won">
</div>
<div id="game-over-img" class="off">
<img src ="images/over.png" alt = "game over">
</div>
</div><!--eof main-content-->
</div><!--eof container-->
</body>
</html>