-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
229 lines (200 loc) ยท 9.74 KB
/
Copy pathindex.html
File metadata and controls
229 lines (200 loc) ยท 9.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="theme-color" content="#1a1a2e">
<meta name="description" content="ELI5 Park - Learn anything simply with interactive explanations for kids and adults. Topics include finance, technology, wellness, cooking, careers, and more!">
<meta name="keywords" content="ELI5, explain like I'm 5, education, learning, kids, finance, technology, wellness, careers, programming, leetcode">
<meta name="author" content="ELI5 Park">
<meta name="robots" content="index, follow">
<meta property="og:title" content="ELI5 - Explain Like I'm 5!">
<meta property="og:description" content="Learn anything simply with interactive explanations!">
<meta property="og:url" content="https://eli5park.com/">
<meta property="og:type" content="website">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="ELI5 Park">
<link rel="canonical" href="https://eli5park.com/">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="icon-192.png">
<link rel="alternate" hreflang="en" href="https://eli5park.com/">
<title>ELI5 - Explain Like I'm 5!</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
min-height: 100vh;
padding: 20px;
}
.container { max-width: 1000px; margin: 0 auto; }
h1 { text-align: center; color: #fff; font-size: 48px; margin-bottom: 10px; text-shadow: 3px 3px 6px rgba(0,0,0,0.3); }
.subtitle { text-align: center; color: rgba(255,255,255,0.8); font-size: 20px; margin-bottom: 40px; }
.phase-title {
color: #fff;
font-size: 28px;
margin: 40px 0 20px;
padding: 15px;
background: rgba(255,255,255,0.15);
border-radius: 15px;
text-align: center;
}
.topics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.topic-card {
background: white;
border-radius: 20px;
padding: 25px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: block;
}
.topic-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.topic-icon { font-size: 45px; text-align: center; margin-bottom: 12px; }
.topic-card h2 { color: #333; font-size: 20px; margin-bottom: 8px; text-align: center; }
.topic-card p { color: #666; font-size: 14px; line-height: 1.5; text-align: center; }
.topic-card:nth-child(1) { border-top: 5px solid #4caf50; }
.topic-card:nth-child(2) { border-top: 5px solid #2196f3; }
.topic-card:nth-child(3) { border-top: 5px solid #ff9800; }
.topic-card:nth-child(4) { border-top: 5px solid #9c27b0; }
.topic-card:nth-child(5) { border-top: 5px solid #7c4dff; }
/* Real World Skills grid colors */
.topics-grid:nth-of-type(2) .topic-card:nth-child(1) { border-top: 5px solid #00bcd4; }
.topics-grid:nth-of-type(2) .topic-card:nth-child(2) { border-top: 5px solid #f44336; }
.intro-box {
background: rgba(255,255,255,0.95);
border-radius: 20px;
padding: 25px;
margin-bottom: 40px;
text-align: center;
}
.intro-box h2 { color: #1a237e; font-size: 24px; margin-bottom: 15px; }
.intro-box p { color: #333; font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.intro-box .highlight { color: #7c4dff; font-weight: bold; }
.intro-box .emoji-row { font-size: 30px; margin-top: 15px; }
@media (max-width: 768px) {
h1 { font-size: 32px; }
.subtitle { font-size: 16px; }
.phase-title { font-size: 22px; }
.topic-card { padding: 20px; }
.topic-icon { font-size: 35px; }
}
</style>
</head>
<body>
<div class="container">
<h1>๐งธ ELI5 Park ๐งธ</h1>
<p class="subtitle">Learn anything - super simply!</p>
<div class="intro-box">
<h2>๐ค What is ELI5?</h2>
<p><strong>ELI5</strong> stands for <span class="highlight">"Explain Like I'm 5"</span> - a way of explaining complex ideas in the simplest possible terms!</p>
<p>This site was created to make hard topics easy to understand. Whether you're a <span class="highlight">curious kid</span> or just someone who wants things broken down simply, this is for you!</p>
<p>We use <span class="highlight">interactive demos, fun visuals, and simple analogies</span> to explain everything from how AI works to how to save money.</p>
<p class="emoji-row">๐ฎ ๐ก ๐ โจ</p>
</div>
<!-- Kids Zone -->
<h2 class="phase-title">๐งธ Kids Zone</h2>
<div class="topics-grid">
<a href="technology/index.html" class="topic-card">
<div class="topic-icon">๐ป</div>
<h2>Technology</h2>
<p>Radio waves, AI, internet, and more!</p>
</a>
<a href="finance-kids/index.html" class="topic-card">
<div class="topic-icon">๐ฐ</div>
<h2>Money for Kids</h2>
<p>Save, invest, and grow your money!</p>
</a>
<a href="careers/index.html" class="topic-card">
<div class="topic-icon">๐</div>
<h2>Careers for Kids</h2>
<p>Dream big! Jobs you can do when you grow up!</p>
</a>
<a href="ai/index.html" class="topic-card">
<div class="topic-icon">๐ค</div>
<h2>Artificial Intelligence</h2>
<p>Machine learning, neural networks, and more!</p>
</a>
<a href="medical/index.html" class="topic-card">
<div class="topic-icon">๐ฉบ</div>
<h2>Medical</h2>
<p>X-rays, MRI, vaccines, and more!</p>
</a>
<a href="wellness/index.html" class="topic-card">
<div class="topic-icon">๐ฟ</div>
<h2>Wellness</h2>
<p>Body, mind, diet, and fitness!</p>
</a>
</div>
<!-- Real World Skills -->
<h2 class="phase-title">๐งบ Real World Skills</h2>
<div class="topics-grid">
<a href="technology/organizing-closet.html" class="topic-card">
<div class="topic-icon">๐งบ</div>
<h2>Organizing Your Closet</h2>
<p>Sorting like a computer!</p>
</a>
<a href="cooking/index.html" class="topic-card">
<div class="topic-icon">๐จโ๐ณ</div>
<h2>Cooking</h2>
<p>Simple recipes for beginners!</p>
</a>
</div>
<!-- Adult Learning -->
<h2 class="phase-title">๐ Adult Learning</h2>
<div class="topics-grid">
<a href="finance/index.html" class="topic-card">
<div class="topic-icon">๐ฐ</div>
<h2>Finance</h2>
<p>Stocks, investing, retirement, and more!</p>
</a>
<a href="nclex/index.html" class="topic-card">
<div class="topic-icon">๐</div>
<h2>NCLEX Prep</h2>
<p>Nursing exam prep - study guides & tips!</p>
</a>
<a href="leetcode/index.html" class="topic-card">
<div class="topic-icon">๐ป</div>
<h2>LeetCode & Algorithms</h2>
<p>Data structures, algorithms, coding interview prep!</p>
</a>
</div>
<!-- Parenting & Family -->
<h2 class="phase-title">๐ถ Parenting & Family</h2>
<div class="topics-grid">
<a href="parenting/index.html" class="topic-card">
<div class="topic-icon">๐ถ</div>
<h2>Parenting</h2>
<p>Baby led weaning, potty training, co-regulation, and more!</p>
</a>
<a href="pregnancy/index.html" class="topic-card">
<div class="topic-icon">๐คฑ</div>
<h2>Pregnancy</h2>
<p>Trimester guides, nutrition, labor, and baby care!</p>
</a>
</div>
<div style="text-align: center; margin-top: 40px;">
<a href="docs/index.html" style="color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px;">๐ Documentation</a>
</div>
</div>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('service-worker.js')
.then(reg => console.log('SW registered'))
.catch(err => console.log('SW registration failed:', err));
}
</script>
</body>
</html>