-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
347 lines (322 loc) · 11.1 KB
/
Copy pathindex.html
File metadata and controls
347 lines (322 loc) · 11.1 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://houselearning.org/cookiebanner.js"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="HouseLearning offers free, kid-friendly math, science, coding, and game-based learning resources designed to make education fun and engaging.">
<meta name="keywords" content="HouseLearning, math games, science lessons, coding lessons, educational games, kids learning, free learning resources, CoolMathTime">
<meta name="author" content="HouseLearning">
<meta name="robots" content="index,follow,max-image-preview:large">
<meta name="theme-color" content="#20232a">
<meta name="language" content="en">
<meta property="og:type" content="website">
<meta property="og:title" content="HouseLearning | Fun Math, Science & Coding">
<meta property="og:description" content="Explore free educational games, lessons, and coding resources for kids and students.">
<meta property="og:url" content="https://houselearning.org/">
<meta property="og:site_name" content="HouseLearning">
<meta property="og:image" content="https://houselearning.org/home/assets/main/houselearning-preview.jpg">
<meta property="og:image:alt" content="HouseLearning educational website preview">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="HouseLearning | Fun Math, Science & Coding">
<meta name="twitter:description" content="Free educational games and lessons in math, science, and coding.">
<meta name="twitter:image" content="https://houselearning.org/home/assets/main/houselearning-preview.jpg">
<link rel="canonical" href="https://www.houselearning.org/home/">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<script src="/feedback.js"></script>
<script type="module" src="also.js"></script>
<script src="/nav-xml-search.js"></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "EducationalOrganization",
"name": "HouseLearning",
"url": "https://houselearning.org/",
"description": "Free educational games, lessons, and coding resources for students.",
"sameAs": [
"https://github.com/houselearning"
],
"areaServed": "Worldwide",
"keywords": "math, science, coding, education, games"
}
</script>
<title>CoolMathTime - Fun Math, Science & Coding</title>
<style>
* { box-sizing: border-box; }
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f9f9f9;
color: #333;
display: flex;
flex-direction: column;
min-height: 100vh;
/* Remove scrollbar */
overflow-x: hidden;
}
.navbar {
background-color: #20232a;
padding: 12px 20px;
display: flex;
justify-content: flex-start; /* Start links from the left */
align-items: center;
box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
overflow: hidden;
}
.navbar-content {
display: flex;
gap: 14px;
white-space: nowrap;
overflow-x: auto;
/* Hide scrollbar for the content if it overflows */
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* Webkit/Blink browsers (Chrome, Safari) scrollbar removal */
.navbar-content::-webkit-scrollbar {
display: none;
}
.navbar a {
color: #61dafb;
text-decoration: none;
padding: 10px 18px;
font-weight: 600;
font-size: 14px;
border-radius: 6px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar a:hover {
background-color: #61dafb;
color: #20232a;
}
/* GitHub Button Styling (Integrated into navbar flow) */
.github-button {
background-color: #24292e;
color: white;
padding: 8px 12px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;
transition: background-color 0.3s ease;
margin-left: 15px;
}
.github-button:hover {
background-color: #000;
}
.github-button img {
width: 20px;
height: 20px;
filter: invert(1);
}
.container {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 20px;
max-width: 1200px;
margin: 20px auto;
}
.card {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
width: 280px;
text-align: center;
transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }
.card img {
width: 100%;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
object-fit: cover;
user-select: none;
}
.card h2 {
font-size: 20px;
font-weight: 700;
color: #20232a;
margin: 16px 0 10px;
}
.card p {
font-size: 15px;
color: #555;
margin-bottom: 12px;
}
.card a {
text-decoration: none;
color: #61dafb;
font-weight: 600;
padding: 8px 12px;
border-radius: 6px;
background: #20232a;
display: inline-block;
transition: background-color 0.3s ease, color 0.3s ease;
}
.card a:hover { background: #61dafb; color: #20232a; }
.games-layout {
max-width: 1200px;
margin: 20px auto 40px;
background: #20232a;
color: #61dafb;
border-radius: 8px;
padding: 25px 30px;
text-align: center;
box-shadow: 0 6px 16px rgb(0 0 0 / 0.1);
}
.games-layout h1 {
font-size: 24px;
font-weight: 700;
margin-bottom: 20px;
color: #61dafb;
}
.game-card {
display: inline-block;
background: white;
padding: 15px;
margin: 10px;
border-radius: 10px;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
width: 220px;
text-align: center;
transition: transform 0.3s ease;
}
.game-card:hover { transform: scale(1.05); }
.game-card img {
width: 100%;
border-radius: 10px;
margin-bottom: 10px;
}
.game-card h3 {
font-size: 18px;
color: #20232a;
margin-bottom: 10px;
}
.game-card a {
text-decoration: none;
color: #61dafb;
font-weight: 600;
padding: 6px 10px;
border-radius: 5px;
background: #20232a;
display: inline-block;
transition: background-color 0.3s ease, color 0.3s ease;
}
.game-card a:hover { background: #61dafb; color: #20232a; }
/* Sidebar for Blog of the Week */
.sidebar {
max-width: 300px;
background: #fff;
padding: 20px;
margin: 20px auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.sidebar h2 {
font-size: 18px;
margin-bottom: 12px;
color: #20232a;
}
.sidebar a {
text-decoration: none;
color: #61dafb;
font-weight: 600;
}
/* Responsive adjustments for mobile/smaller screens */
@media (max-width: 900px) {
.navbar-content {
/* Allow horizontal scrolling on smaller screens if links don't fit */
overflow-x: auto;
justify-content: flex-start;
}
.github-button {
margin-left: 0;
margin-top: 10px;
}
.navbar {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
}
</style>
</head>
<body>
<nav class="navbar">
<div class="navbar-content">
<a href="https://houselearning.org/home/">Home</a>
<a href="https://houselearning.org/home/math-page.html">Math Games</a>
<a href="https://houselearning.org/home/science-page.html">Science Fun</a>
<a href="https://houselearning.org/home/computer-science-page.html">Coding Challenges</a>
<a href="https://houselearning.org/home/games.html">Random Games</a>
<a href="https://houselearning.org/safe-library">Safe Library</a>
<a href="https://houselearning.org/home/blog.html">Blog</a>
<a href="https://houselearning.org/home/about">About</a>
<a href="https://houselearning.org/apply">Apply</a>
<a href="https://github.com/houselearning" target="_blank" class="github-button">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg" alt="GitHub icon">
View On GitHub
</a>
</div>
</nav>
<main class="container">
<div class="card">
<img src="https://houselearning.org/home/assets/main/math-games.jpg" alt="Math Games">
<h2>Math Learning</h2>
<p>Sharpen your math skills with exciting games and puzzles, and educational lessons.</p>
<a href="https://houselearning.org/home/math-page.html">Play Now</a>
</div>
<div class="card">
<img src="https://houselearning.org/home/assets/main/science-experiments.jpg" alt="Science Experiments">
<h2>Science Fun</h2>
<p>Explore fun science experiments and learn new concepts.</p>
<a href="https://houselearning.org/home/science-page.html">Start Exploring</a>
</div>
<div class="card">
<img src="https://houselearning.org/home/assets/main/coding-challenges.jpg" alt="Coding Challenges">
<h2>Coding Challenges</h2>
<p>Test your programming skills with interactive coding challenges.</p>
<a href="https://houselearning.org/home/computer-science-page.html">Start Coding</a>
</div>
</main>
<aside class="sidebar">
<h2>📰 Blog of the Week</h2>
<p><a href="blog/motivation/rule-of-dopamine.html">The Role of Dopamine in Staying Motivated</a></p>
</aside>
<section class="games-layout">
<h1>🔥Hot Games🔥</h1>
<div class="game-card">
<img src="https://houselearning.org/home/assets/main/timesort.jpg" alt="Time Sort">
<h3>Time Sort</h3>
<a href="https://houselearning.org/home/games/timesort.html">Play Now</a>
</div>
<div class="game-card">
<img src="https://houselearning.org/home/assets/main/driftboss.jpg" alt="Game 3">
<h3>Drift Boss</h3>
<a href="https://houselearning.org/home/assets/driftboss/">Play Now</a>
</div>
<div class="game-card">
<img src="https://houselearning.org/home/assets/main/numberrace.jpg" alt="Number Race">
<h3>Number Race</h3>
<a href="https://houselearning.org/home/games/numberrace.html">Play Now</a>
</div>
<div class="game-card">
<img src="https://houselearning.org/home/assets/main/sciencerace.jpg" alt="Science Race">
<h3>Science Race</h3>
<a href="https://houselearning.org/home/games/sciencerace.htm">Play Now</a>
</div>
</section>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://houselearning.org/home/main.js"></script>
<!--<script src="https://www.freevisitorcounters.com/en/home/counter/1320434/t/0"></script>-->
</body>
</html>