-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·68 lines (60 loc) · 3.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="An educational game for children about learning how to add single digit numbers. Learning while playing!">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Addition of single digit by Cal Tech Hub">
<meta itemprop="description" content="An educational game for children about learning how to add single digit numbers. Learning while playing!">
<meta itemprop="image" content="https://sarthakdabhi.github.io/addition-1/images/addition-1-screenshot.jpg">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://sarthakdabhi.github.io/addition-1/index.html">
<meta property="og:type" content="website">
<meta property="og:title" content="Addition of single digit by Cal Tech Hub">
<meta property="og:description" content="An educational game for children about learning how to add single digit numbers. Learning while playing!">
<meta property="og:image" content="https://sarthakdabhi.github.io/addition-1/images/addition-1-screenshot.jpg">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Addition of single digit by Cal Tech Hub">
<meta name="twitter:description" content="An educational game for children about learning how to add single digit numbers. Learning while playing!">
<meta name="twitter:image" content="https://sarthakdabhi.github.io/addition-1/images/addition-1-screenshot.jpg">
<link href="https://fonts.googleapis.com/css?family=Kalam:700" rel="stylesheet">
<link href="./style.min.css" rel="stylesheet">
<title>Addition of single digit by Cal Tech Hub</title>
</head>
<body>
<div id="game">
<div class="screens" id="screen-0">
<div id="game-title">Addition</div>
<div id="game-sub-title" class="margin-b-15">Single digit</div>
<div class="text-center">
<div id="learn" class="btn margin-b-15">Learn</div>
<br>
<div id="practice" class="btn">Practice</div>
</div>
</div>
<div class="screens" id="screen-1">
<div id="learning_ques"></div>
<div>
<div id="toy-1"></div>
<div id="toy-2"></div>
</div>
<div id="learning_ans" class="margin-b-15">
<span id="que"></span>
<span id="ans"><input id="your_ans"></span>
</div>
<div id="explain"></div>
</div>
<div class="screens" id="screen-2">
<div id="practice_ques_container">
<span id="practice_ques"></span>
<span id="practice_input"><input id="practice_your_ans"></span>
</div>
<div id="results"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script type="text/javascript" src="game.min.js"></script>
</body>
</html>