-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (89 loc) · 3.85 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/spongebob.css" id="spongebob-style" class="dino-style">
<link rel="stylesheet" href="styles/dino.css" id="dino-style" class="dino-style">
<link rel="stylesheet" href="styles/thomas.css" id="thomas-style" class="thomas-style">
<link rel="stylesheet" href="styles/pokemon.css" id="pokemon-style" class="pokemon-style">
<meta name="description" content="A word association game created to facilitate cognitive growth in children and those with learning disabilities." />
<meta name="twitter:card" value="summary">
<meta property="og:title" content="Memory-Match - A Word Association Game" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://www.memory-match.toddshinto.com/" />
<meta property="og:image" content="http://memory-match.toddshinto.com/meta-img.png" />
<meta property="og:description" content="A word association game created to facilitate cognitive growth in children and those with learning disabilities." />
<title>Memory Match - A Word Association Game</title>
</head>
<body id="bg" class="bg">
<div class="theme-changer">
<button type="button" class="spongebob" id="toSpongebob"></button>
<button type="button" class="dino" id="toDino"></button>
<button type="button" class="thomas" id="toThomas"></button>
<button type="button" class="pokemon" id="toPokemon"></button>
</div>
<div class="start-screen">
<h1 class="welcome">WELCOME!</h1>
<h2 class="instructions">Instructions:</h2>
<div class="instructions-container">
<div class="pencil example"></div>
<div>+</div>
<div class="paper example"></div>
<div>=</div>
<div class="paper_pencil example"></div>
</div>
<h2 class="welcome-sub">Choose your theme:</h2>
<div class="theme-container">
<button type="button" class="spongebob theme-selector" id="spongebob"></button>
<button type="button" class="dino theme-selector" id="dino"></button>
<button type="button" class="thomas theme-selector" id="thomas"></button>
<button type="button" class="pokemon theme-selector" id="pokemon"></button>
</div>
</div>
<div class="you-win hidden congrats" id="win-screen">
<h1 id="congrats" class="congrats title">CONGRATULATIONS!</h1>
<div class="hidden win-gif gif" id="win-gif"></div>
</div>
<div class="play-again-container hidden">
<h2 class="go-again font">PLAY AGAIN?</h2>
<p class="click-below font">CLICK BELOW</p>
<button type="button" class="spongebob goAgain" id="sponge-again"></button>
<button type="button" class="dino goAgain" id="dino-again"></button>
<button type="button" class="thomas goAgain" id="thomas-again"></button>
<button type="button" class="pokemon goAgain" id="pokemon-again"></button>
</div>
<div class="container" id="container">
<div class="row-1">
<header>
<h1 id="title" class="title">MATCH THE CARDS!</h1>
</header>
</div>
<div class="row-2">
<aside class="col-2" id="stats">
<div class="stats" id="statsLabel">
<h2 class="statsText font">Stats</h2>
</div>
<div class="stats" id="gamesPlayed">
<h2 class="statsText font">Games Played</h2>
</div>
<div class="stats">
<h2 class="statsText font" id="games">0</h2>
</div>
<div class="stats">
<h2 class="statsText font">Attempts</h2>
</div>
<div class="stats">
<h2 class="statsText font" id="attempts">0</h2>
</div>
<div class="img" id="img">
</div>
</aside>
<main class="col-10" id="gameCards">
</main>
</div>
</div>
<script src="main.js"></script>
</body>
</html>