-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathblog.html
More file actions
209 lines (180 loc) · 5.78 KB
/
blog.html
File metadata and controls
209 lines (180 loc) · 5.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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="/feedback.js"></script>
<script type="module" src="/home/blog/searchbar.js"></script>
<script src="https://houselearning.org/cookiebanner.js"></script>
<script src="https://houselearning.org/home/main.js"></script>
<script type="module" src="also.js"></script>
<title>HouseLearning | Blog</title>
<style>
:root {
--bg: #f7fbff;
--panel: #ffffff;
--accent: #3b82f6; /* bright blue */
--accent2: #1d4ed8; /* darker blue */
--text: #222;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: "Segoe UI", sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
header {
background: var(--accent);
color: white;
padding: 1.5rem;
text-align: center;
}
header h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
nav {
background: var(--accent2);
text-align: center;
padding: 0.75rem;
}
nav a {
color: white;
text-decoration: none;
margin: 0 1rem;
font-weight: 500;
}
.container {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 2rem;
padding: 2rem;
max-width: 1200px;
margin: auto;
}
.blog-list article {
background: var(--panel);
padding: 1.5rem;
border-radius: 12px;
margin-bottom: 1.5rem;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-list article:hover {
transform: translateY(-4px);
box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}
.blog-list h2 {
margin-bottom: 0.5rem;
font-size: 1.3rem;
}
.blog-list h2 a {
color: var(--accent2);
text-decoration: none;
}
.blog-list p {
font-size: 0.95rem;
color: #555;
}
.sidebar {
background: var(--panel);
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 3px 8px rgba(0,0,0,0.06);
height: fit-content;
}
.sidebar h3 {
margin-bottom: 0.75rem;
color: var(--accent2);
}
.sidebar p a {
color: var(--accent);
font-weight: 500;
text-decoration: none;
}
.sidebar ul {
list-style: none;
margin-top: 0.5rem;
}
.sidebar li {
margin: 0.4rem 0;
}
.sidebar li a {
text-decoration: none;
color: var(--text);
font-size: 0.95rem;
}
footer {
text-align: center;
padding: 1rem;
margin-top: 2rem;
background: var(--accent);
color: white;
}
/* Mobile responsive */
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header>
<h1>HouseLearning Blog</h1>
<p>Study hacks, lessons & student tips — fresh every week</p>
</header>
<nav class="navbar">
<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/about">About</a>
<a href="https://houselearning.org/apply">Apply</a>
<a href="https://houselearning.org/blog.html">Blog</a>
</nav>
<div class="container">
<!-- Blog posts -->
<section class="blog-list">
<article>
<h2><a href="blog/general/houselearning-app.html">HouseLearning Is Becoming an App!</a></h2>
<p>The maintainers announced a straightforward plan: build a C# app to host and deliver HouseLearning content with better performance and tighter local integration.</p>
</article>
<article>
<h2><a href="blog/math/best-tools.html">The Best Free Math Tools Online</a></h2>
<p>Math doesn’t have to be scary. These online tools make it way easier to practice...</p>
</article>
<article>
<h2><a href="blog/motivation/how-to-stay-motivated.html">How to Stay Motivated During Exams</a></h2>
<p>Exams are stressful, but here’s how you can keep your energy up and avoid burnout...</p>
</article>
<article>
<h2><a href="blog/general/language-learning.html">The Future of Learning: How HouseLearning is Bringing Language Learning to Everyone</a></h2>
<p>HouseLearning wants to make language learning inclusive. That means lessons will be accessible for learners with dyslexia, visual impairments, and other learning differences.</p>
</article>
</section>
<!-- Sidebar -->
<aside class="sidebar">
<h3>📌 Blog of the Week</h3>
<p><a href="blog/motivation/how-to-turn.html">How to Turn “I Don’t Feel Like It” Into Action in 2 Minutes</a></p>
<hr style="margin: 1rem 0; border: none; border-top: 1px solid #ddd;">
<h3>📚 Categories</h3>
<ul>
<li><a href="blog/studytips/index.html">Study Tips</a></li>
<li><a href="blog/math/index.html">Math</a></li>
<li><a href="blog/science/index.html">Science</a></li>
<li><a href="blog/motivation/index.html">Motivation</a></li>
<li><a href="blog/kids/index.html">Kids</a></li>
</ul>
</aside>
</div>
<footer>
<p>© 2025 HouseLearning. All rights reserved.</p>
</footer>
</body>
</html>