-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (101 loc) · 4.21 KB
/
index.html
File metadata and controls
101 lines (101 loc) · 4.21 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
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
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="shortcut icon" href="./shared-assets/img/favicon.ico" />
<meta name="description" content="A creative, and educational web app that encourages those of all ages to discover their math abilities!">
<meta name="author" content="Ashley Caswell and Timothy Hsu">
<link rel="manifest" href="./shared-assets/manifest.json">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-title" content="Numbers!">
<link rel="apple-touch-icon" href="./shared-assets/img/SoManyNumbersIOS.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#066596"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" href="./title-screen/css/style.css">
<title>So Many Numbers!</title>
</head>
<body>
<div class="end-of-life-notification">
<p>
<strong>We moved!</strong>
New link: <a href="https://numbers.gamesbytim.com" rel="noopener">numbers.gamesbytim.com</a>
</p>
<p style="font-size:80%;">
This version of So Many Numbers will no longer receive updates.
</p>
</div>
<nav class= "navigation navbar">
<a class="navbar-brand"><img src="./shared-assets/img/SoManyNumbersIOS.png" alt="So Many Numbers!"></a>
<div>
So Many Numbers!
</div>
<div class="content">
</div>
</nav>
<div class="side-bar">
<div class="tab">Help</div>
<h1>Game Goals!</h1>
<ul>
<li>This is an arithmetic game to help one build mental math skills.</li>
<li>Solve problems as fast as you can. There is a timer.</li>
<li>Have fun! Play as many times as you want!</li>
</ul>
</div>
<div id= "center" style="text-align: center;">
<div id="ashleyInfo">
<h3>Other Projects by Ashley Caswell</h3>
<p>
<a class="projectName" href="https://farm-link.herokuapp.com" target="_blank" rel="noopener">Farm-Link</a>
</p>
<p>
<a class="projectName" href="https://github.com/ash-caz" target="_blank" rel="noopener"><em>Ashley's GitHub</em></a>
</p>
<p>
<button class="button-2" type="button" onclick="goBack()">Go Back</button>
</p>
</div>
<div id="timothyInfo">
<h3>Other Projects by Timothy Hsu</h3>
<p>
<a class="projectName" href="https://www.gamesbytim.com" target="_blank" rel="noopener">Games by Tim</a>
</p>
<p>
<a class="projectName" href="https://github.com/TimTree" target="_blank" rel="noopener"><em>Timothy's GitHub</em></a>
</p>
<p>
<button class="button-2" type="button" onclick="goBack()">Go Back</button>
</p>
</div>
<div id="gameStart">
<p><button class= "button-1" type="button" onclick="location.href='./game'">Start</button></p>
</div>
</div>
<div id="authors">
<div>
By <a class="authorName" onclick="authorInfo('Ashley')">Ashley Caswell</a> and <a class="authorName" onclick="authorInfo('Timothy')">Timothy Hsu</a>
// <a href="https://github.com/So-Many-Numbers/So-Many-Numbers.github.io" target="_blank" rel="noopener">GitHub Repo</a>
</div>
</div>
<script src="./title-screen/js/main.js" charset="utf-8"></script>
<script src="./upup.min.js"></script>
<script>
UpUp.start({
'content-url': 'index.html',
'assets': [
'./title-screen/css/style.css',
'./title-screen/js/main.js',
'./game/index.html',
'./game/css/style.css',
'./game/js/main.js',
'./shared-assets/img/home-button.png',
'./shared-assets/img/SoManyNumbersIOS.png',
'./shared-assets/js/local-storage.js',
'./shared-assets/manifest.json'
]
});
</script>
</body>
</html>