-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
47 lines (47 loc) · 1.67 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Numbers Game</title>
<meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1; minimum-scale=1; user-scalable=no; target-densityDpi=device-dpi"/>
<link href='http://fonts.googleapis.com/css?family=Boogaloo' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/sweetalert.css"/>
</head>
<body>
<div class="holder">
<div class="twenty droppable lg-text no1" data-id="">
<p></p>
</div>
<div class="twenty lg-text operand">
<p></p>
</div>
<div class="twenty droppable lg-text no2" data-id="">
<p></p>
</div>
<div class="twenty lg-text">
<p>=</p>
</div>
<div class="twenty droppable lg-text total1" data-id="">
<p></p>
</div>
<div class="twenty droppable lg-text total2" data-id="">
<p> </p>
</div>
</div>
<div class="holder answers"></div>
<div style="width:100%;clear:both;"></div>
<div class="right">
<a href="counting.html" class="btn">Counting →</a>
</div>
<div class="left">
<a href="" class="btn" id="easy">Easy</a>
<a href="#dif=2" class="btn" id="med">Hard</a>
</div>
</body>
<script src="http://codeorigin.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script src="js/jquery.ui.touch-punch.min.js"></script>
<script src="js/sweetalert.min.js"></script>
<script src="js/sums-simple.js"></script>
<script src="js/main.js?v=2"></script>
</html>