-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
132 lines (116 loc) · 4.19 KB
/
about.html
File metadata and controls
132 lines (116 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script src="https://houselearning.org/cookiebanner.js"></script>
<script src="/feedback.js"></script>
<meta http-equiv="refresh" content="0; URL='/about.html'" />
<meta charset="UTF-8">
<title>HouseLearning Home - Project Info</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
max-width: 900px;
margin: 40px auto;
padding: 0 20px;
line-height: 1.7;
color: #333;
}
h1, h2, h3 {
color: #111;
}
code {
background: #f4f4f4;
padding: 2px 4px;
border-radius: 4px;
font-family: monospace;
}
pre {
background: #f4f4f4;
padding: 10px;
overflow-x: auto;
border-radius: 4px;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
max-width: 100%;
border-radius: 8px;
margin: 20px 0;
}
ul {
padding-left: 20px;
}
hr {
margin: 40px 0;
border: none;
border-top: 1px solid #ddd;
}
</style>
</head>
<body>
<h1>HouseLearning Home</h1>
<p>Welcome to <strong>HouseLearning Home</strong> — a fun and interactive learning game website designed to make education engaging through browser-based mini-games and activities. The platform offers a collection of educational games that help users practice and reinforce their skills while having fun.</p>
<h2>🎮 Features</h2>
<ul>
<li><strong>Interactive educational games</strong> — Engaging activities that respond to player input in real time.</li>
<li><strong>Instant feedback and rewards</strong> — Players get immediate results, points, and progress indicators to track learning.</li>
<li><strong>Simple, clean, and responsive interface</strong> — Designed to be easy to use on desktop and mobile browsers.</li>
<li><strong>Web-based — no installation required</strong> — Runs directly in your web browser with no extra software needed.</li>
</ul>
<h2>🛠️ Tech Stack</h2>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Optionally Node.js/NPM for development tooling</li>
</ul>
<h2>📸 Screenshots</h2>
<p>Here’s a preview of the HouseLearning Home website:</p>
<img src="https://houselearning.org/home/readme/screenshot.png" alt="HouseLearning Home Screenshot">
<h2>🚀 Getting Started</h2>
<h3>1️⃣ Clone the repository</h3>
<pre><code>git clone https://github.com/houselearning/home.git</code></pre>
<h3>2️⃣ (Optional) Install dependencies</h3>
<pre><code>npm install</code></pre>
<h3>3️⃣ Open the site</h3>
<p>You can either start a local server or open <code>index.html</code> directly in your browser.</p>
<p><strong>Example using VS Code’s Live Server extension:</strong></p>
<ul>
<li>Right-click <code>index.html</code></li>
<li>Select <strong>Open with Live Server</strong></li>
</ul>
<p>Or just double-click <code>index.html</code> to launch in your default browser.</p>
<h2>📖 Usage</h2>
<p>Once the site is running:</p>
<ul>
<li>Visit the homepage</li>
<li>Choose a game or activity from the main menu</li>
<li>Play and learn while receiving instant feedback and rewards</li>
</ul>
<h2>🤝 Contributing</h2>
<p>Contributions are welcome! To contribute:</p>
<ol>
<li>Fork the repository</li>
<li>Create a new branch (<code>git checkout -b feature/your-feature-name</code>)</li>
<li>Commit your changes (<code>git commit -m 'Add some feature'</code>)</li>
<li>Push to the branch (<code>git push origin feature/your-feature-name</code>)</li>
<li>Open a Pull Request</li>
</ol>
<h2>📜 License</h2>
<p>This project is currently proprietary. All rights reserved by <strong>HouseLearning</strong>.<br>
For permissions or licensing inquiries, please contact the project maintainer.</p>
<h2>🔗 Project Links</h2>
<ul>
<li><a href="https://houselearning.org/home/" target="_blank">HouseLearning Website</a></li>
<li><a href="https://github.com/houselearning/home" target="_blank">GitHub Repository</a></li>
</ul>
<hr>
<p><em>Made with ❤️ by HouseLearning</em></p>
</body>
</html>