AARIFSHABIR commited on
Commit
66d6aee
·
verified ·
1 Parent(s): 031f0b9

Please make an app for inculcating curiosity of science for 7 grade students - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +408 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: 7 Grade
3
- emoji: 🌖
4
- colorFrom: gray
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: 7-grade
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,408 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Science Explorer - Grade 7</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @keyframes float {
11
+ 0% { transform: translateY(0px); }
12
+ 50% { transform: translateY(-10px); }
13
+ 100% { transform: translateY(0px); }
14
+ }
15
+ .floating {
16
+ animation: float 3s ease-in-out infinite;
17
+ }
18
+ .card-hover:hover {
19
+ transform: translateY(-5px);
20
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
21
+ }
22
+ .experiment-video {
23
+ width: 100%;
24
+ aspect-ratio: 16 / 9;
25
+ background: #000;
26
+ }
27
+ </style>
28
+ </head>
29
+ <body class="bg-gradient-to-br from-blue-50 to-indigo-100 min-h-screen">
30
+ <div class="container mx-auto px-4 py-8">
31
+ <!-- Header Section -->
32
+ <header class="text-center mb-12">
33
+ <div class="flex justify-center mb-4">
34
+ <i class="fas fa-atom text-6xl text-indigo-600 floating"></i>
35
+ </div>
36
+ <h1 class="text-4xl md:text-5xl font-bold text-indigo-800 mb-3">Science Explorer</h1>
37
+ <p class="text-xl text-gray-700 max-w-2xl mx-auto">Discover the fascinating world of science through interactive experiments, quizzes, and daily mysteries!</p>
38
+ </header>
39
+
40
+ <!-- Main Dashboard -->
41
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
42
+ <!-- Daily Science Mystery -->
43
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
44
+ <div class="bg-indigo-600 p-4">
45
+ <h2 class="text-white text-xl font-bold"><i class="fas fa-question-circle mr-2"></i>Daily Mystery</h2>
46
+ </div>
47
+ <div class="p-6">
48
+ <div class="bg-indigo-100 rounded-lg p-4 mb-4">
49
+ <p class="font-medium text-indigo-800">Why does ice float on water?</p>
50
+ </div>
51
+ <button onclick="revealAnswer()" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-2 px-4 rounded-lg transition">
52
+ Reveal Answer
53
+ </button>
54
+ <div id="answer" class="mt-4 text-gray-700 hidden">
55
+ <p>Ice floats because it's less dense than liquid water. When water freezes, the molecules form a crystalline structure that takes up more space, making ice less dense than the liquid form.</p>
56
+ <div class="mt-4 flex items-center">
57
+ <i class="fas fa-lightbulb text-yellow-500 text-2xl mr-2"></i>
58
+ <span class="text-sm text-gray-600">Try it: Freeze water in a clear container and observe the expansion!</span>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ </div>
63
+
64
+ <!-- Quick Experiments -->
65
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
66
+ <div class="bg-emerald-600 p-4">
67
+ <h2 class="text-white text-xl font-bold"><i class="fas fa-flask mr-2"></i>Quick Experiments</h2>
68
+ </div>
69
+ <div class="p-6">
70
+ <div class="mb-4">
71
+ <h3 class="font-bold text-emerald-800 mb-2">Rainbow Milk</h3>
72
+ <p class="text-gray-700 text-sm mb-3">See colors dance with this simple chemistry demo!</p>
73
+ <button onclick="showExperiment('milk')" class="text-emerald-600 hover:text-emerald-800 text-sm font-medium flex items-center">
74
+ Show me how <i class="fas fa-chevron-right ml-1"></i>
75
+ </button>
76
+ </div>
77
+ <div class="mb-4">
78
+ <h3 class="font-bold text-emerald-800 mb-2">Lemon Battery</h3>
79
+ <p class="text-gray-700 text-sm mb-3">Power a clock with citrus power!</p>
80
+ <button onclick="showExperiment('lemon')" class="text-emerald-600 hover:text-emerald-800 text-sm font-medium flex items-center">
81
+ Show me how <i class="fas fa-chevron-right ml-1"></i>
82
+ </button>
83
+ </div>
84
+ <div>
85
+ <h3 class="font-bold text-emerald-800 mb-2">Invisible Ink</h3>
86
+ <p class="text-gray-700 text-sm mb-3">Write secret messages with science!</p>
87
+ <button onclick="showExperiment('ink')" class="text-emerald-600 hover:text-emerald-800 text-sm font-medium flex items-center">
88
+ Show me how <i class="fas fa-chevron-right ml-1"></i>
89
+ </button>
90
+ </div>
91
+ </div>
92
+ </div>
93
+
94
+ <!-- Progress Tracker -->
95
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
96
+ <div class="bg-amber-500 p-4">
97
+ <h2 class="text-white text-xl font-bold"><i class="fas fa-trophy mr-2"></i>My Science Journey</h2>
98
+ </div>
99
+ <div class="p-6">
100
+ <div class="mb-6">
101
+ <div class="flex justify-between mb-1">
102
+ <span class="text-sm font-medium text-amber-800">Curiosity Level</span>
103
+ <span class="text-sm font-medium text-amber-800">45%</span>
104
+ </div>
105
+ <div class="w-full bg-amber-200 rounded-full h-2.5">
106
+ <div class="bg-amber-600 h-2.5 rounded-full" style="width: 45%"></div>
107
+ </div>
108
+ </div>
109
+ <div class="space-y-4">
110
+ <div class="flex items-center">
111
+ <div class="w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
112
+ <i class="fas fa-check text-indigo-600"></i>
113
+ </div>
114
+ <div>
115
+ <p class="font-medium text-gray-800">Completed: States of Matter</p>
116
+ <p class="text-xs text-gray-500">2 days ago</p>
117
+ </div>
118
+ </div>
119
+ <div class="flex items-center">
120
+ <div class="w-8 h-8 rounded-full bg-emerald-100 flex items-center justify-center mr-3">
121
+ <i class="fas fa-flask text-emerald-600"></i>
122
+ </div>
123
+ <div>
124
+ <p class="font-medium text-gray-800">Up next: Chemical Reactions</p>
125
+ <p class="text-xs text-gray-500">Coming soon</p>
126
+ </div>
127
+ </div>
128
+ <div class="flex items-center">
129
+ <div class="w-8 h-8 rounded-full bg-amber-100 flex items-center justify-center mr-3">
130
+ <i class="fas fa-question text-amber-600"></i>
131
+ </div>
132
+ <div>
133
+ <p class="font-medium text-gray-800">Questions asked: 12</p>
134
+ <p class="text-xs text-gray-500">Great job!</p>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- Featured Topics -->
143
+ <div class="bg-white rounded-xl shadow-lg p-6 mb-12">
144
+ <h2 class="text-2xl font-bold text-indigo-800 mb-6 flex items-center">
145
+ <i class="fas fa-star mr-3 text-yellow-500"></i> Explore Science Topics
146
+ </h2>
147
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-4">
148
+ <div class="relative group rounded-xl overflow-hidden h-40 transition-all duration-300 transform hover:scale-105">
149
+ <div class="absolute inset-0 bg-gradient-to-br from-purple-500 to-blue-600 opacity-90"></div>
150
+ <div class="relative p-4 h-full flex flex-col justify-end z-10">
151
+ <h3 class="text-white font-bold text-lg">Physics</h3>
152
+ <p class="text-white text-sm opacity-0 group-hover:opacity-100 transition-opacity duration-300">Forces, Motion & Energy</p>
153
+ </div>
154
+ <i class="fas fa-atom absolute top-4 right-4 text-white text-3xl opacity-70"></i>
155
+ </div>
156
+ <div class="relative group rounded-xl overflow-hidden h-40 transition-all duration-300 transform hover:scale-105">
157
+ <div class="absolute inset-0 bg-gradient-to-br from-green-500 to-teal-600 opacity-90"></div>
158
+ <div class="relative p-4 h-full flex flex-col justify-end z-10">
159
+ <h3 class="text-white font-bold text-lg">Biology</h3>
160
+ <p class="text-white text-sm opacity-0 group-hover:opacity-100 transition-opacity duration-300">Cells, Organisms & Ecosystems</p>
161
+ </div>
162
+ <i class="fas fa-dna absolute top-4 right-4 text-white text-3xl opacity-70"></i>
163
+ </div>
164
+ <div class="relative group rounded-xl overflow-hidden h-40 transition-all duration-300 transform hover:scale-105">
165
+ <div class="absolute inset-0 bg-gradient-to-br from-red-500 to-pink-600 opacity-90"></div>
166
+ <div class="relative p-4 h-full flex flex-col justify-end z-10">
167
+ <h3 class="text-white font-bold text-lg">Chemistry</h3>
168
+ <p class="text-white text-sm opacity-0 group-hover:opacity-100 transition-opacity duration-300">Matter & Its Changes</p>
169
+ </div>
170
+ <i class="fas fa-flask absolute top-4 right-4 text-white text-3xl opacity-70"></i>
171
+ </div>
172
+ <div class="relative group rounded-xl overflow-hidden h-40 transition-all duration-300 transform hover:scale-105">
173
+ <div class="absolute inset-0 bg-gradient-to-br from-yellow-500 to-orange-600 opacity-90"></div>
174
+ <div class="relative p-4 h-full flex flex-col justify-end z-10">
175
+ <h3 class="text-white font-bold text-lg">Earth Science</h3>
176
+ <p class="text-white text-sm opacity-0 group-hover:opacity-100 transition-opacity duration-300">Our Changing Planet</p>
177
+ </div>
178
+ <i class="fas fa-globe-americas absolute top-4 right-4 text-white text-3xl opacity-70"></i>
179
+ </div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Interactive Quiz Section -->
184
+ <div class="bg-indigo-700 rounded-xl shadow-lg p-6 mb-12">
185
+ <h2 class="text-2xl font-bold text-white mb-6 flex items-center">
186
+ <i class="fas fa-brain mr-3 text-yellow-300"></i> Test Your Knowledge
187
+ </h2>
188
+ <div id="quizContainer" class="bg-white rounded-lg p-6">
189
+ <div id="question1" class="quiz-question">
190
+ <h3 class="font-bold text-lg mb-4">1. What causes the phases of the Moon?</h3>
191
+ <div class="space-y-3">
192
+ <label class="flex items-center p-3 border border-gray-200 rounded-lg cursor-pointer hover:bg-indigo-50">
193
+ <input type="radio" name="moon" value="A" class="mr-3">
194
+ The Earth's shadow covering parts of the Moon
195
+ </label>
196
+ <label class="flex items-center p-3 border border-gray-200 rounded-lg cursor-pointer hover:bg-indigo-50">
197
+ <input type="radio" name="moon" value="B" class="mr-3">
198
+ The Moon's own light dimming and brightening
199
+ </label>
200
+ <label class="flex items-center p-3 border border-gray-200 rounded-lg cursor-pointer hover:bg-indigo-50">
201
+ <input type="radio" name="moon" value="C" class="mr-3">
202
+ How much of the sunlit side we can see from Earth
203
+ </label>
204
+ <label class="flex items-center p-3 border border-gray-200 rounded-lg cursor-pointer hover:bg-indigo-50">
205
+ <input type="radio" name="moon" value="D" class="mr-3">
206
+ Clouds blocking parts of the Moon
207
+ </label>
208
+ </div>
209
+ <button onclick="checkAnswer('question1', 'C')" class="mt-4 bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-2 px-4 rounded-lg transition">
210
+ Check Answer
211
+ </button>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Video Experiment Section -->
217
+ <div class="bg-white rounded-xl shadow-lg p-6 mb-12">
218
+ <h2 class="text-2xl font-bold text-indigo-800 mb-6 flex items-center">
219
+ <i class="fas fa-video mr-3 text-red-500"></i> Science in Action
220
+ </h2>
221
+ <div class="experiment-video rounded-lg overflow-hidden mb-4">
222
+ <!-- Placeholder for video, would be replaced with actual embedded video -->
223
+ <div class="w-full h-full flex items-center justify-center bg-gradient-to-r from-purple-400 to-blue-500">
224
+ <div class="text-center">
225
+ <i class="fas fa-play-circle text-white text-5xl mb-3"></i>
226
+ <p class="text-white font-bold">Mentos and Soda Eruption</p>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ <div class="bg-indigo-50 rounded-lg p-4">
231
+ <h3 class="font-bold text-indigo-800 mb-2">What's happening here?</h3>
232
+ <p class="text-gray-700 mb-3">When Mentos candies are dropped into soda, the rough surface of the candy provides countless sites for carbon dioxide bubbles to form rapidly. This causes a dramatic eruption as the gas leaves the liquid.</p>
233
+ <button class="text-indigo-600 hover:text-indigo-800 font-medium flex items-center">
234
+ Try this experiment (with adult supervision) <i class="fas fa-arrow-right ml-2"></i>
235
+ </button>
236
+ </div>
237
+ </div>
238
+
239
+ <!-- Science News Section -->
240
+ <div class="bg-gradient-to-r from-blue-600 to-indigo-700 rounded-xl shadow-lg p-6 text-white">
241
+ <h2 class="text-2xl font-bold mb-6 flex items-center">
242
+ <i class="fas fa-newspaper mr-3 text-yellow-300"></i> Cool Science News
243
+ </h2>
244
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
245
+ <div class="bg-white bg-opacity-10 rounded-lg p-5 backdrop-filter backdrop-blur-sm">
246
+ <h3 class="font-bold text-lg mb-2">New Dinosaur Species Discovered</h3>
247
+ <p class="text-sm opacity-90 mb-3">Paleontologists have found a previously unknown dinosaur in Argentina that had tiny arms like T. rex but hunted with powerful legs.</p>
248
+ <div class="flex justify-between items-center">
249
+ <span class="text-xs opacity-75">July 12, 2023</span>
250
+ <button class="text-xs bg-white bg-opacity-20 hover:bg-opacity-30 px-3 py-1 rounded-full transition">
251
+ Read More
252
+ </button>
253
+ </div>
254
+ </div>
255
+ <div class="bg-white bg-opacity-10 rounded-lg p-5 backdrop-filter backdrop-blur-sm">
256
+ <h3 class="font-bold text-lg mb-2">Secrets of Spider Silk Strength</h3>
257
+ <p class="text-sm opacity-90 mb-3">Scientists have unlocked why spider silk is so strong relative to its weight, which could lead to new super-strong materials.</p>
258
+ <div class="flex justify-between items-center">
259
+ <span class="text-xs opacity-75">June 28, 2023</span>
260
+ <button class="text-xs bg-white bg-opacity-20 hover:bg-opacity-30 px-3 py-1 rounded-full transition">
261
+ Read More
262
+ </button>
263
+ </div>
264
+ </div>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Science Joke Section -->
269
+ <div class="bg-white rounded-xl shadow-lg p-6 mt-12 text-center">
270
+ <i class="fas fa-microscope text-4xl text-indigo-600 mb-4"></i>
271
+ <h3 class="text-xl font-bold text-indigo-800 mb-2">Science Joke of the Day</h3>
272
+ <p class="text-gray-700 mb-4" id="scienceJoke">Why don't scientists trust atoms?</p>
273
+ <button onclick="revealPunchline()" class="bg-indigo-100 text-indigo-700 hover:bg-indigo-200 font-medium py-2 px-4 rounded-lg transition">
274
+ Tell me!
275
+ </button>
276
+ <p class="text-gray-600 mt-4 hidden" id="punchline">Because they make up everything!</p>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Experiment Modal -->
281
+ <div id="experimentModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
282
+ <div class="bg-white rounded-xl max-w-md w-full mx-4 max-h-[90vh] overflow-y-auto">
283
+ <div class="p-6">
284
+ <div class="flex justify-between items-center mb-4">
285
+ <h3 id="experimentTitle" class="text-xl font-bold text-emerald-800"></h3>
286
+ <button onclick="closeModal()" class="text-gray-500 hover:text-gray-700">
287
+ <i class="fas fa-times"></i>
288
+ </button>
289
+ </div>
290
+ <div id="experimentContent" class="text-gray-700">
291
+ <!-- Content will be loaded here -->
292
+ </div>
293
+ <div class="mt-6 pt-4 border-t border-gray-200">
294
+ <p class="text-sm text-gray-500 flex items-center">
295
+ <i class="fas fa-exclamation-triangle text-amber-500 mr-2"></i>
296
+ Always perform experiments with adult supervision
297
+ </p>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </div>
302
+
303
+ <script>
304
+ // Reveal daily mystery answer
305
+ function revealAnswer() {
306
+ document.getElementById('answer').classList.remove('hidden');
307
+ }
308
+
309
+ // Check quiz answer
310
+ function checkAnswer(questionId, correctAnswer) {
311
+ const selected = document.querySelector(`#${questionId} input[type="radio"]:checked`);
312
+ if (!selected) {
313
+ alert('Please select an answer!');
314
+ return;
315
+ }
316
+
317
+ if (selected.value === correctAnswer) {
318
+ alert('Correct! Great job! 🎉');
319
+ } else {
320
+ alert('Not quite. Keep exploring and try again!');
321
+ }
322
+ }
323
+
324
+ // Show experiment modal
325
+ function showExperiment(experiment) {
326
+ const modal = document.getElementById('experimentModal');
327
+ const title = document.getElementById('experimentTitle');
328
+ const content = document.getElementById('experimentContent');
329
+
330
+ modal.classList.remove('hidden');
331
+
332
+ if (experiment === 'milk') {
333
+ title.textContent = 'Rainbow Milk Experiment';
334
+ content.innerHTML = `
335
+ <h4 class="font-bold mb-2">You'll need:</h4>
336
+ <ul class="list-disc pl-5 mb-4">
337
+ <li>Whole milk</li>
338
+ <li>Food coloring</li>
339
+ <li>Dish soap</li>
340
+ <li>Cotton swabs</li>
341
+ <li>A shallow dish</li>
342
+ </ul>
343
+ <h4 class="font-bold mb-2">Steps:</h4>
344
+ <ol class="list-decimal pl-5 mb-4">
345
+ <li>Pour milk into the dish to cover the bottom</li>
346
+ <li>Add drops of different food coloring around the milk</li>
347
+ <li>Dip a cotton swab in dish soap</li>
348
+ <li>Touch the soapy swab to the milk and watch the colors explode!</li>
349
+ </ol>
350
+ <h4 class="font-bold mb-2">The Science:</h4>
351
+ <p>Milk contains fat and proteins. The soap molecules race to bond with the fat molecules, causing the food coloring to swirl as the soap disrupts the milk's surface tension.</p>
352
+ `;
353
+ } else if (experiment === 'lemon') {
354
+ title.textContent = 'Lemon Battery Experiment';
355
+ content.innerHTML = `
356
+ <h4 class="font-bold mb-2">You'll need:</h4>
357
+ <ul class="list-disc pl-5 mb-4">
358
+ <li>4 Lemons (the juicier the better)</li>
359
+ <li>4 Zinc nails or galvanized screws</li>
360
+ <li>4 Copper coins or strips</li>
361
+ <li>5 Alligator clip wires</li>
362
+ <li>Small LED or digital clock</li>
363
+ </ul>
364
+ <h4 class="font-bold mb-2">Steps:</h4>
365
+ <ol class="list-decimal pl-5 mb-4">
366
+ <li>Roll lemons to release juices inside</li>
367
+ <li>Insert one zinc nail and one copper coin into each lemon</li>
368
+ <li>Connect the lemons in series using wires from zinc to copper</li>
369
+ <li>Connect the last wire to your LED or clock</li>
370
+ <li>Watch the power of chemistry!</li>
371
+ </ol>
372
+ <h4 class="font-bold mb-2">The Science:</h4>
373
+ <p>The acid in the lemon reacts with the zinc and copper, creating an electrochemical reaction that produces electricity. Just like a battery!</p>
374
+ `;
375
+ } else if (experiment === 'ink') {
376
+ title.textContent = 'Invisible Ink Experiment';
377
+ content.innerHTML = `
378
+ <h4 class="font-bold mb-2">You'll need:</h4>
379
+ <ul class="list-disc pl-5 mb-4">
380
+ <li>Lemon juice</li>
381
+ <li>Cotton swab or paintbrush</li>
382
+ <li>White paper</li>
383
+ <li>Heat source (light bulb or iron)</li>
384
+ </ul>
385
+ <h4 class="font-bold mb-2">Steps:</h4>
386
+ <ol class="list-decimal pl-5 mb-4">
387
+ <li>Dip swab in lemon juice and write your message</li>
388
+ <li>Let it dry completely (message disappears)</li>
389
+ <li>Gently heat the paper to reveal your secret message</li>
390
+ </ol>
391
+ <h4 class="font-bold mb-2">The Science:</h4>
392
+ <p>Lemon juice weakens the paper fibers. When heated, these areas burn faster than the rest of the paper, making your message visible!</p>
393
+ `;
394
+ }
395
+ }
396
+
397
+ // Close modal
398
+ function closeModal() {
399
+ document.getElementById('experimentModal').classList.add('hidden');
400
+ }
401
+
402
+ // Reveal joke punchline
403
+ function revealPunchline() {
404
+ document.getElementById('punchline').classList.remove('hidden');
405
+ }
406
+ </script>
407
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=AARIFSHABIR/7-grade" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
408
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Please make an app for inculcating curiosity of science for 7 grade students