<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vidya Pravesh — 90-Day Daily Activity Plan</title>
<link href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@300;400;600;700;800&family=Fredoka+One&display=swap" rel="stylesheet">
<style>
:root {
--hw: #FF6B6B; /* Goal 1: Health & Wellbeing - Coral Red */
--ec: #4ECDC4; /* Goal 2: Effective Communicators - Teal */
--il: #FFE66D; /* Goal 3: Involved Learners - Sunshine Yellow */
--m1: #FF8C42; /* Month 1 - Warm Orange */
--m2: #6C63FF; /* Month 2 - Electric Purple */
--m3: #2EC4B6; /* Month 3 - Mint Teal */
--bg: #FFFBF5;
--card: #FFFFFF;
--dark: #1a1a2e;
--text: #2d3436;
--muted: #636e72;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Nunito', sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
}
/* ── HERO HEADER ─────────────────────────────── */
.hero {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #533483 100%);
padding: 50px 30px 40px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
pointer-events: none;
}
.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.3);
color: #FFE66D;
font-family: 'Nunito', sans-serif;
font-weight: 700;
font-size: 12px;
letter-spacing: 3px;
text-transform: uppercase;
padding: 6px 18px;
border-radius: 20px;
margin-bottom: 18px;
}
.hero h1 {
font-family: 'Fredoka One', sans-serif;
font-size: clamp(2.2rem, 5vw, 4rem);
color: #fff;
line-height: 1.15;
margin-bottom: 8px;
letter-spacing: 1px;
}
.hero h1 span { color: #FFE66D; }
.hero-sub {
font-size: 1rem;
color: rgba(255,255,255,0.75);
font-weight: 600;
margin-bottom: 28px;
letter-spacing: 0.5px;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 22px;
}
.stat-pill {
background: rgba(255,255,255,0.12);
border: 1px solid rgba(255,255,255,0.2);
color: #fff;
padding: 8px 18px;
border-radius: 50px;
font-size: 0.82rem;
font-weight: 700;
display: flex;
align-items: center;
gap: 6px;
}
.stat-pill .icon { font-size: 1rem; }
.goal-legend {
display: flex;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}
.legend-item {
display: flex; align-items: center; gap: 6px;
font-size: 0.78rem; color: rgba(255,255,255,0.8); font-weight: 700;
}
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
/* ── DAILY SCHEDULE STRIP ──────────────────── */
.schedule-strip {
background: var(--dark);
padding: 18px 20px;
display: flex;
justify-content: center;
gap: 0;
flex-wrap: wrap;
overflow-x: auto;
}
.sched-block {
display: flex; align-items: stretch;
position: relative;
}
.sched-item {
text-align: center;
padding: 8px 12px;
font-size: 0.7rem;
font-weight: 800;
border-radius: 8px;
color: #fff;
min-width: 88px;
line-height: 1.3;
}
.sched-sep {
display: flex; align-items: center;
color: rgba(255,255,255,0.25);
font-size: 1.2rem;
padding: 0 4px;
}
.s1 { background: linear-gradient(135deg,#FF6B6B,#ff4757); }
.s2 { background: linear-gradient(135deg,#A29BFE,#6C5CE7); }
.s3 { background: linear-gradient(135deg,#00CEC9,#00B894); }
.s4 { background: linear-gradient(135deg,#FDCB6E,#e17055); }
.s5 { background: linear-gradient(135deg,#55EFC4,#00b894); }
.s6 { background: linear-gradient(135deg,#74B9FF,#0984E3); }
.s7 { background: linear-gradient(135deg,#fd79a8,#e84393); }
.s8 { background: linear-gradient(135deg,#81ECEC,#00CEC9); }
/* ── NAVIGATION TABS ───────────────────────── */
.month-nav {
display: flex;
justify-content: center;
gap: 12px;
padding: 24px 20px 10px;
flex-wrap: wrap;
position: sticky;
top: 0;
background: var(--bg);
z-index: 100;
border-bottom: 2px solid #eee;
}
.month-tab {
padding: 10px 24px;
border-radius: 50px;
border: 2.5px solid transparent;
cursor: pointer;
font-family: 'Baloo 2', sans-serif;
font-size: 0.88rem;
font-weight: 700;
transition: all 0.25s;
color: #fff;
letter-spacing: 0.3px;
}
.month-tab.m1 { background: var(--m1); }
.month-tab.m2 { background: var(--m2); }
.month-tab.m3 { background: var(--m3); }
.month-tab:not(.active) { opacity: 0.55; transform: scale(0.95); }
.month-tab.active { opacity: 1; transform: scale(1.06); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
/* ── MONTH SECTION ──────────────────────────── */
.month-section { display: none; padding: 24px 16px 40px; max-width: 1300px; margin: 0 auto; }
.month-section.active { display: block; }
.month-header {
text-align: center;
margin-bottom: 28px;
}
.month-title {
font-family: 'Fredoka One', sans-serif;
font-size: 2.2rem;
margin-bottom: 6px;
}
.month-title.m1 { color: var(--m1); }
.month-title.m2 { color: var(--m2); }
.month-title.m3 { color: var(--m3); }
.month-desc {
font-size: 0.92rem;
color: var(--muted);
max-width: 600px;
margin: 0 auto;
font-weight: 600;
line-height: 1.6;
}
.focus-tags {
display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 10px;
}
.focus-tag {
padding: 4px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px;
}
/* ── WEEK CARD ──────────────────────────────── */
.week-section { margin-bottom: 32px; }
.week-header {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 20px;
border-radius: 14px;
cursor: pointer;
transition: all 0.2s;
margin-bottom: 14px;
user-select: none;
}
.week-num {
font-family: 'Fredoka One', sans-serif;
font-size: 2rem;
color: rgba(255,255,255,0.9);
min-width: 44px;
}
.week-info { flex: 1; }
.week-theme {
font-family: 'Baloo 2', sans-serif;
font-size: 1.1rem;
font-weight: 800;
color: #fff;
margin-bottom: 2px;
}
.week-days-range {
font-size: 0.75rem;
color: rgba(255,255,255,0.75);
font-weight: 700;
}
.week-goals {
display: flex; gap: 6px;
}
.wg {
font-size: 0.68rem; font-weight: 800;
padding: 3px 9px; border-radius: 12px;
background: rgba(255,255,255,0.2); color: #fff;
}
.week-toggle {
color: rgba(255,255,255,0.7);
font-size: 1.2rem;
transition: transform 0.25s;
}
.week-header.open .week-toggle { transform: rotate(180deg); }
/* ── DAYS GRID ──────────────────────────────── */
.days-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 14px;
overflow: hidden;
max-height: 0;
transition: max-height 0.5s ease;
}
.days-grid.open { max-height: 9999px; }
/* ── DAY CARD ───────────────────────────────── */
.day-card {
background: var(--card);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.07);
transition: transform 0.2s, box-shadow 0.2s;
border: 1px solid rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
}
.day-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.day-card-top {
padding: 14px 16px 10px;
position: relative;
}
.day-num {
font-family: 'Fredoka One', sans-serif;
font-size: 0.7rem;
letter-spacing: 1px;
text-transform: uppercase;
opacity: 0.7;
margin-bottom: 2px;
}
.day-theme {
font-family: 'Baloo 2', sans-serif;
font-size: 1rem;
font-weight: 800;
line-height: 1.25;
margin-bottom: 6px;
color: var(--dark);
}
.goal-tags {
display: flex; gap: 4px; flex-wrap: wrap;
}
.goal-tag {
font-size: 0.62rem; font-weight: 800; padding: 2px 7px; border-radius: 10px;
letter-spacing: 0.3px;
}
.tag-hw { background: #FFE5E5; color: #c0392b; }
.tag-ec { background: #E0FDF4; color: #0f766e; }
.tag-il { background: #FEF9C3; color: #92400e; }
/* ── FLOW BAR ───────────────────────────────── */
.flow-bar {
display: flex;
height: 6px;
overflow: hidden;
}
.flow-seg { flex: 1; }
.fs1 { background: #FF6B6B; }
.fs2 { background: #A29BFE; }
.fs3 { background: #00CEC9; }
.fs4 { background: #FDCB6E; }
.fs5 { background: #55EFC4; }
.fs6 { background: #74B9FF; }
.fs7 { background: #fd79a8; }
.fs8 { background: #81ECEC; }
/* ── DAY CARD BODY ──────────────────────────── */
.day-body { padding: 12px 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.activity-block {
background: #F8F9FA;
border-radius: 10px;
padding: 10px 12px;
border-left: 3px solid #ddd;
}
.activity-block.main { border-left-color: var(--m1); background: #FFF8F0; }
.activity-label {
font-size: 0.64rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--muted);
margin-bottom: 3px;
}
.activity-name {
font-family: 'Baloo 2', sans-serif;
font-size: 0.88rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 4px;
}
.activity-text {
font-size: 0.75rem;
line-height: 1.55;
color: var(--text);
}
.steps-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 3px;
margin-top: 4px;
}
.steps-list li {
font-size: 0.73rem;
line-height: 1.45;
color: var(--text);
padding-left: 16px;
position: relative;
}
.steps-list li::before {
content: '▶';
position: absolute;
left: 0;
font-size: 0.5rem;
top: 3px;
color: var(--m1);
}
/* MATERIALS */
.materials-row {
display: flex; gap: 5px; flex-wrap: wrap;
}
.mat-tag {
background: #EDF2FF;
color: #3730a3;
font-size: 0.62rem;
font-weight: 700;
padding: 2px 8px;
border-radius: 8px;
}
/* TEACHER TIP */
.teacher-tip {
background: linear-gradient(135deg, #FFF9C4, #FFF3CD);
border-radius: 10px;
padding: 9px 12px;
border-left: 3px solid #f59f00;
}
.tip-label {
font-size: 0.62rem;
font-weight: 800;
color: #b7791f;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 2px;
}
.tip-text {
font-size: 0.73rem;
color: #744210;
line-height: 1.5;
}
/* DELIVERABLE */
.deliverable {
background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
border-radius: 10px;
padding: 9px 12px;
border-left: 3px solid #4CAF50;
margin-top: auto;
}
.del-label {
font-size: 0.62rem;
font-weight: 800;
color: #2e7d32;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 2px;
}
.del-text {
font-size: 0.73rem;
color: #1b5e20;
font-weight: 600;
line-height: 1.4;
}
/* ── DAILY SCHEDULE MINI ─────────────────────── */
.mini-schedule {
display: flex;
gap: 3px;
flex-wrap: wrap;
margin-bottom: 4px;
}
.ms-item {
font-size: 0.6rem;
font-weight: 700;
padding: 2px 6px;
border-radius: 6px;
color: #fff;
}
/* WEEK BG COLORS */
.wh-m1-1 { background: linear-gradient(135deg,#FF8C42,#ff6348); }
.wh-m1-2 { background: linear-gradient(135deg,#FF6B9D,#e84393); }
.wh-m1-3 { background: linear-gradient(135deg,#FFC312,#f7b731); }
.wh-m1-4 { background: linear-gradient(135deg,#C4E538,#a3cb38); }
.wh-m1-5 { background: linear-gradient(135deg,#12CBC4,#1289A7); }
.wh-m1-6 { background: linear-gradient(135deg,#FDA7DF,#D980FA); }
.wh-m2-1 { background: linear-gradient(135deg,#6C63FF,#5352ED); }
.wh-m2-2 { background: linear-gradient(135deg,#8854d0,#a55eea); }
.wh-m2-3 { background: linear-gradient(135deg,#0652DD,#1289A7); }
.wh-m2-4 { background: linear-gradient(135deg,#EA2027,#ee5a24); }
.wh-m2-5 { background: linear-gradient(135deg,#009432,#006A4E); }
.wh-m2-6 { background: linear-gradient(135deg,#833471,#6F1E51); }
.wh-m3-1 { background: linear-gradient(135deg,#2EC4B6,#20A4F3); }
.wh-m3-2 { background: linear-gradient(135deg,#00B4D8,#0077B6); }
.wh-m3-3 { background: linear-gradient(135deg,#06D6A0,#118AB2); }
.wh-m3-4 { background: linear-gradient(135deg,#073B4C,#118AB2); }
.wh-m3-5 { background: linear-gradient(135deg,#2EC4B6,#533483); }
.wh-m3-6 { background: linear-gradient(135deg,#0f3460,#533483); }
/* month accent on activity main block */
.m2 .activity-block.main { border-left-color: var(--m2); background: #F3F0FF; }
.m3 .activity-block.main { border-left-color: var(--m3); background: #E6FFFD; }
.m2 .steps-list li::before { color: var(--m2); }
.m3 .steps-list li::before { color: var(--m3); }
/* ── TEACHER GUIDE BOX ──────────────────────── */
.teacher-guide {
background: linear-gradient(135deg, #1a1a2e, #16213e);
color: #fff;
border-radius: 18px;
padding: 28px;
margin: 0 0 28px;
}
.tg-title {
font-family: 'Fredoka One', sans-serif;
font-size: 1.4rem;
color: #FFE66D;
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 8px;
}
.tg-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 12px;
}
.tg-item {
background: rgba(255,255,255,0.08);
border-radius: 12px;
padding: 12px 14px;
border-left: 3px solid #FFE66D;
}
.tg-item-title {
font-size: 0.78rem;
font-weight: 800;
color: #FFE66D;
text-transform: uppercase;
letter-spacing: 0.8px;
margin-bottom: 5px;
}
.tg-item-text {
font-size: 0.75rem;
color: rgba(255,255,255,0.82);
line-height: 1.55;
}
/* ── IMPROVEMENT CALLOUTS ───────────────────── */
.improvement-section {
background: linear-gradient(135deg,#fff0f6,#fce7f3);
border-radius: 18px;
padding: 24px 24px 20px;
margin-bottom: 28px;
border: 2px solid #fbb6ce;
}
.imp-title {
font-family: 'Fredoka One', sans-serif;
font-size: 1.3rem;
color: #be185d;
margin-bottom: 14px;
display: flex; align-items: center; gap: 8px;
}
.imp-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 12px;
}
.imp-item {
background: #fff;
border-radius: 12px;
padding: 12px 14px;
border-top: 3px solid #ec4899;
}
.imp-item-title { font-size: 0.78rem; font-weight: 800; color: #9d174d; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.imp-item-text { font-size: 0.73rem; color: #6b7280; line-height: 1.5; }
/* ── FOOTER ─────────────────────────────────── */
.footer {
background: var(--dark);
color: rgba(255,255,255,0.6);
text-align: center;
padding: 24px;
font-size: 0.78rem;
font-weight: 600;
}
.footer span { color: #FFE66D; }
/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 600px) {
.hero h1 { font-size: 1.8rem; }
.hero-stats { gap: 8px; }
.stat-pill { font-size: 0.72rem; padding: 6px 12px; }
.days-grid { grid-template-columns: 1fr; }
.month-tab { font-size: 0.78rem; padding: 8px 16px; }
}
@media print {
.month-nav, .month-tab { display: none; }
.month-section { display: block !important; }
.days-grid { max-height: none !important; display: grid !important; }
.day-card { break-inside: avoid; }
}
</style>
</head>
<body>
<!-- HERO -->
<div class="hero">
<div class="hero-badge">NCERT · NEP 2020 · NIPUN Bharat</div>
<h1>विद्या प्रवेश<br><span>90-Day Daily Activity Plan</span></h1>
<div class="hero-sub">Three-Month Play-Based School Preparation Module for Grade I • Complete Teacher's Guide</div>
<div class="hero-stats">
<div class="stat-pill"><span class="icon">📅</span> 90 School Days</div>
<div class="stat-pill"><span class="icon">📚</span> 18 Weeks</div>
<div class="stat-pill"><span class="icon">⏰</span> 4 Hours/Day</div>
<div class="stat-pill"><span class="icon">🎯</span> 3 Developmental Goals</div>
<div class="stat-pill"><span class="icon">🎮</span> Play-Based Learning</div>
<div class="stat-pill"><span class="icon">🏫</span> Grade I Readiness</div>
</div>
<div class="goal-legend">
<div class="legend-item"><div class="legend-dot" style="background:#FF6B6B"></div>Goal 1: Health & Well-being (HW)</div>
<div class="legend-item"><div class="legend-dot" style="background:#4ECDC4"></div>Goal 2: Effective Communicators (EC)</div>
<div class="legend-item"><div class="legend-dot" style="background:#FFE66D"></div>Goal 3: Involved Learners (IL)</div>
</div>
</div>
<!-- DAILY SCHEDULE STRIP -->
<div class="schedule-strip">
<div class="sched-block">
<div class="sched-item s1">🙏 Meet & Greet<br>8:30–8:45</div>
<div class="sched-sep">→</div>
<div class="sched-item s2">🎲 Free Play<br>8:45–9:30</div>
<div class="sched-sep">→</div>
<div class="sched-item s3">🔤 Language<br>9:30–10:00</div>
<div class="sched-sep">→</div>
<div class="sched-item s4">🔢 Numeracy<br>10:00–10:30</div>
<div class="sched-sep">→</div>
<div class="sched-item s5">🍱 Meal Time<br>10:30–11:00</div>
<div class="sched-sep">→</div>
<div class="sched-item s6">🌳 Outdoor Play<br>11:00–11:30</div>
<div class="sched-sep">→</div>
<div class="sched-item s7">🎨 Art/Theme<br>11:30–12:15</div>
<div class="sched-sep">→</div>
<div class="sched-item s8">👋 Goodbye<br>12:15–12:30</div>
</div>
</div>
<!-- MONTH NAVIGATION -->
<div class="month-nav">
<button class="month-tab m1 active" onclick="showMonth(1)">🌅 Month 1 · Settling In (Days 1–30)</button>
<button class="month-tab m2" onclick="showMonth(2)">🌿 Month 2 · Building & Exploring (Days 31–60)</button>
<button class="month-tab m3" onclick="showMonth(3)">🌟 Month 3 · Consolidating & Connecting (Days 61–90)</button>
</div>
<!-- ══════════════════════════════════════════════ -->
<!-- MONTH 1 -->
<!-- ══════════════════════════════════════════════ -->
<div id="month1" class="month-section active m1">
<div class="month-header">
<div class="month-title m1">🌅 Month 1 · Settling In & Self-Discovery</div>
<div class="month-desc">Children transition joyfully into school life. Focus on building trust, establishing routines, developing self-awareness, and nurturing socio-emotional bonds. Play is the primary vehicle for all learning.</div>
<div class="focus-tags">
<span class="focus-tag" style="background:#FFE5E5;color:#c0392b;">🏃 Physical Development</span>
<span class="focus-tag" style="background:#FFF3E0;color:#e65100;">💛 Socio-Emotional Growth</span>
<span class="focus-tag" style="background:#E8F5E9;color:#2e7d32;">🌿 Health & Hygiene</span>
<span class="focus-tag" style="background:#E3F2FD;color:#1565c0;">🔤 Oral Language Basics</span>
</div>
</div>
<!-- TEACHER GUIDE -->
<div class="teacher-guide">
<div class="tg-title">👩🏫 Month 1 — Teacher's Preparation Guide</div>
<div class="tg-grid">
<div class="tg-item"><div class="tg-item-title">🎯 Monthly Objective</div><div class="tg-item-text">Help every child feel safe, welcomed, and excited about school. Build daily routines and a sense of classroom community.</div></div>
<div class="tg-item"><div class="tg-item-title">📦 Prepare Before Day 1</div><div class="tg-item-text">Name tags for each child, welcome banner, classroom interest areas (book, art, blocks, dolls, science), attendance chart, daily schedule display.</div></div>
<div class="tg-item"><div class="tg-item-title">🗣️ Circle Time Topics</div><div class="tg-item-text">My name, my family, my favorite food, my favorite color, weather today, what I did yesterday — keep it conversational and joyful.</div></div>
<div class="tg-item"><div class="tg-item-title">📊 Assessment This Month</div><div class="tg-item-text">Observe participation in play, social interaction, ability to follow routines, oral expression comfort. No formal testing — use anecdotal records & portfolios.</div></div>
<div class="tg-item"><div class="tg-item-title">🤝 Parent Connect</div><div class="tg-item-text">Send a welcome letter home explaining Vidya Pravesh. Ask parents to share about child's interests, home language, and any special needs on Day 1–3.</div></div>
<div class="tg-item"><div class="tg-item-title">⚠️ Inclusion Reminder</div><div class="tg-item-text">Seat children with disabilities near the front. Use mother tongue for instructions. Pair shy/new children with confident peers. Never rush separation anxiety.</div></div>
</div>
</div>
<div id="weeks-m1"></div>
</div>
<!-- ══════════════════════════════════════════════ -->
<!-- MONTH 2 -->
<!-- ══════════════════════════════════════════════ -->
<div id="month2" class="month-section m2">
<div class="month-header">
<div class="month-title m2">🌿 Month 2 · Building & Exploring</div>
<div class="month-desc">Children deepen their communication, numeracy foundations, and environmental curiosity. Activities become more structured while retaining the joy of play-based exploration.</div>
<div class="focus-tags">
<span class="focus-tag" style="background:#EDE9FE;color:#5b21b6;">📖 Language & Literacy</span>
<span class="focus-tag" style="background:#FEF9C3;color:#92400e;">🔢 Numeracy Foundations</span>
<span class="focus-tag" style="background:#E0F2FE;color:#075985;">🌍 Environmental Awareness</span>
<span class="focus-tag" style="background:#FCE7F3;color:#9d174d;">🎭 Creative Expression</span>
</div>
</div>
<div class="teacher-guide" style="background: linear-gradient(135deg, #1e1b4b, #312e81);">
<div class="tg-title">👩🏫 Month 2 — Teacher's Preparation Guide</div>
<div class="tg-grid">
<div class="tg-item" style="border-left-color:#A29BFE"><div class="tg-item-title">🎯 Monthly Objective</div><div class="tg-item-text">Introduce foundational literacy (oral language, phonological awareness) and numeracy (1–10, sorting, patterns). Build environmental curiosity through hands-on science play.</div></div>
<div class="tg-item" style="border-left-color:#A29BFE"><div class="tg-item-title">📚 Literacy Corner Update</div><div class="tg-item-text">Add 5+ new picture books. Create a print-rich environment with alphabet posters, word walls with pictures, labelled objects in the classroom.</div></div>
<div class="tg-item" style="border-left-color:#A29BFE"><div class="tg-item-title">🔢 Numeracy Materials</div><div class="tg-item-text">Prepare number cards 1–10, counting objects (stones, seeds, blocks), sorting trays, abacus. Use locally available materials — cost = zero.</div></div>
<div class="tg-item" style="border-left-color:#A29BFE"><div class="tg-item-title">📊 Assessment</div><div class="tg-item-text">Month 2 assessment: Can child count to 10 with objects? Identify beginning sounds? Retell a simple story? Record in individual checklist per child.</div></div>
<div class="tg-item" style="border-left-color:#A29BFE"><div class="tg-item-title">🌱 Science Corner</div><div class="tg-item-text">Set up a simple discovery tray: seeds, magnets, magnifying glass, leaves. Change items weekly. Let children explore independently during free play.</div></div>
<div class="tg-item" style="border-left-color:#A29BFE"><div class="tg-item-title">🤝 Parent Connect</div><div class="tg-item-text">Share a home-activity card: "Ask your child to count 5 objects at home" or "Tell me a bedtime story." Bridge school learning to home routines.</div></div>
</div>
</div>
<div id="weeks-m2"></div>
</div>
<!-- ══════════════════════════════════════════════ -->
<!-- MONTH 3 -->
<!-- ══════════════════════════════════════════════ -->
<div id="month3" class="month-section m3">
<div class="month-header">
<div class="month-title m3">🌟 Month 3 · Consolidating & Connecting</div>
<div class="month-desc">Children integrate all three developmental goals. Activities become richer and more child-led. Culminates in portfolio review, parent sharing, and a joyful Vidya Pravesh Graduation celebration.</div>
<div class="focus-tags">
<span class="focus-tag" style="background:#CCFBF1;color:#0f766e;">🔬 Scientific Temper</span>
<span class="focus-tag" style="background:#D1FAE5;color:#065f46;">💎 Values & Character</span>
<span class="focus-tag" style="background:#FEF3C7;color:#92400e;">🎓 School Readiness</span>
<span class="focus-tag" style="background:#E0E7FF;color:#3730a3;">📁 Portfolio & Assessment</span>
</div>
</div>
<div class="teacher-guide" style="background: linear-gradient(135deg, #064e3b, #065f46);">
<div class="tg-title">👩🏫 Month 3 — Teacher's Preparation Guide</div>
<div class="tg-grid">
<div class="tg-item" style="border-left-color:#6EE7B7"><div class="tg-item-title">🎯 Monthly Objective</div><div class="tg-item-text">Deepen and integrate learning across all three goals. Prepare children for the formal Grade 1 curriculum. Build confidence, curiosity, and love of learning.</div></div>
<div class="tg-item" style="border-left-color:#6EE7B7"><div class="tg-item-title">📁 Portfolio Completion</div><div class="tg-item-text">Compile each child's work: drawings, name-writing attempts, art work, anecdotal records, growth chart. Prepare for parent sharing on Day 87.</div></div>
<div class="tg-item" style="border-left-color:#6EE7B7"><div class="tg-item-title">🔬 Science Projects</div><div class="tg-item-text">Plan Mini Science Fair (Day 75). Each child demonstrates one discovery: seeds growing, float/sink, shadow play. Parents can attend. Keep it joyful and low-stakes.</div></div>
<div class="tg-item" style="border-left-color:#6EE7B7"><div class="tg-item-title">📊 Final Assessment</div><div class="tg-item-text">Post-module assessment using Annexure V framework. Focus on progress, NOT comparison. Every child has grown — celebrate that! Share reports warmly with parents.</div></div>
<div class="tg-item" style="border-left-color:#6EE7B7"><div class="tg-item-title">🎊 Graduation Prep</div><div class="tg-item-text">Day 90: Plan a simple celebration. Children perform a song/skit. Display their art. Issue simple 'completion certificates'. Involve parents. Make it memorable!</div></div>
<div class="tg-item" style="border-left-color:#6EE7B7"><div class="tg-item-title">🔄 Transition to Curriculum</div><div class="tg-item-text">After Day 90, maintain the play-based pedagogy into Grade 1. The Vidya Pravesh spirit continues — joyful, child-centred, holistic. It doesn't stop here.</div></div>
</div>
</div>
<!-- Improvements Section -->
<div class="improvement-section">
<div class="imp-title">🚀 Suggested Improvements for Teachers — Enhancing Vidya Pravesh Implementation</div>
<div class="imp-grid">
<div class="imp-item"><div class="imp-item-title">📱 Digital Integration</div><div class="imp-item-text">Use DIKSHA app for supplementary audio-visual resources. Play phonics songs, number rhymes, and folk stories for enrichment — even 10 minutes/day makes a difference.</div></div>
<div class="imp-item"><div class="imp-item-title">🌍 Multilingual Approach</div><div class="imp-item-text">Allow children to respond in any language they know. Create a "Language Wall" where words for common objects are written in 2–3 languages. Celebrate linguistic diversity.</div></div>
<div class="imp-item"><div class="imp-item-title">🎯 Differentiation Strategy</div><div class="imp-item-text">For every activity, prepare 3 levels: Basic (watch & point), Core (do with guidance), Advanced (do independently + extend). No child should be lost or bored.</div></div>
<div class="imp-item"><div class="imp-item-title">📸 Documentation Made Easy</div><div class="imp-item-text">Take 2 photos per week per child on a smartphone. Print monthly or keep digitally. This IS the portfolio — no expensive materials needed. Share via WhatsApp with parents.</div></div>
<div class="imp-item"><div class="imp-item-title">🏡 Home-School Bridge</div><div class="imp-item-text">Design weekly "Ghar Ka Kaam" — not written homework, but a family activity: "Sing a song together," "Count dal grains," "Draw your house." Involves parents meaningfully.</div></div>
<div class="imp-item"><div class="imp-item-title">🧘 Mindfulness Minute</div><div class="imp-item-text">Add a 2-minute breathing/stretching moment after outdoor play before afternoon activities. "Take a big breath, stretch like a tree." Dramatically improves focus for next session.</div></div>
<div class="imp-item"><div class="imp-item-title">🌟 Star of the Day</div><div class="imp-item-text">Rotate a "Star of the Day" role — this child leads prayer, does attendance, chooses a song, and gets to share one thing. Builds confidence and ensures every child leads.</div></div>
<div class="imp-item"><div class="imp-item-title">📋 Weekly Reflection Log</div><div class="imp-item-text">Every Friday, spend 5 minutes writing: What worked? What didn't? Which child needs attention next week? This 5-minute habit transforms teaching quality over 90 days.</div></div>
</div>
</div>
<div id="weeks-m3"></div>
</div>
<!-- FOOTER -->
<div class="footer">
Created from <span>Vidya Pravesh — NCERT, 2022</span> · Aligned with <span>NEP 2020 & NIPUN Bharat</span> · Play-Based Learning for Grade I Children (Age 6–7)
</div>
<script>
// ════════════════════════════════════════════════════════════
// DATA STRUCTURE — 90 DAYS
// ════════════════════════════════════════════════════════════
const months = [
{
id: 1,
weeks: [
{
num: 1, wclass: "wh-m1-1", theme: "🌸 Welcome to School!", days: "Days 1–5",
goals: ["HW","EC"],
days_data: [
{ n: 1, theme: "First Day Welcome & School Tour", goals: ["HW","EC"],
keyActivity: "School Tour & Name Tag Making",
steps: ["Welcome each child at the door by name with a warm smile","Let children explore classroom interest areas freely for 20 min","Take a guided school tour: washroom, garden, library, playground","Each child makes their name tag (write name + draw self-portrait)","Circle time: each child says their name and one favourite thing"],
materials: ["Name tag cards","Crayons","School tour checklist"],
tip: "Keep the first day light and joyful. Do NOT start any formal learning. Let children roam, touch, explore. Your warmth is the curriculum today.",
deliverable: "Each child has their own name tag. Teacher has noted which children seem anxious or excited." },
{ n: 2, theme: "All About Me — Who Am I?", goals: ["HW","EC"],
keyActivity: "Activity 1: All About Me Drawing",
steps: ["Circle time: sing 'Head, Shoulders, Knees & Toes' with actions","Give each child paper; ask them to draw themselves","Ask: 'What do you like?' 'What makes you happy?' Let them share","Display all portraits on the 'About Me' wall","End with a group body-rhyme: clap, stomp, spin!"],
materials: ["A4 paper","Crayons/pencils","Wall display space"],
tip: "Accept ALL drawings — a circle with dots is a valid self-portrait! Praise effort, never correct drawing. Ask questions: 'Tell me about your picture.'",
deliverable: "Self-portrait displayed on class wall. Teacher notes children who are verbally expressive vs. quiet." },
{ n: 3, theme: "Our Classroom Rules", goals: ["HW","EC"],
keyActivity: "Activity 5: My Responsibilities — Class Jobs",
steps: ["Discuss: 'How do we make our classroom a happy place?' with children","Let children suggest rules — write them with pictures (3–4 simple rules)","Introduce classroom jobs: Material in-charge, Meal in-charge, Clean-up, Outdoor in-charge","Make job badges and assign first rotation","Role-play each responsibility — show, don't just tell"],
materials: ["Chart paper","Sketch pens","Badge cards","Safety pins"],
tip: "Use PICTURE-based rules, not only text. Every child should see themselves in at least one classroom role this week. Rotate daily.",
deliverable: "Class Rules chart displayed at child eye level. Job rotation chart started." },
{ n: 4, theme: "Making Friends — Name Games", goals: ["HW","EC"],
keyActivity: "Name Ball Game + Friendship Bracelets",
steps: ["Sit in a circle. Roll a ball — whoever gets it says their name and one action","'My name is Priya and I jump!' — everyone mimics the action","Story time: 'My New Friend' — discuss what makes a good friend","Children make simple paper-chain bracelets in pairs","Pair-share: 'My friend's name is ___ and they like ___'"],
materials: ["Soft ball","Coloured paper strips","Tape/stapler","Story book or picture cards"],
tip: "Purposefully pair children who haven't interacted yet. Watch for children who are isolated — gently facilitate inclusion through the game.",
deliverable: "Friendship bracelet chain displayed in class. Teacher has mental note of social dynamics." },
{ n: 5, theme: "My School Family", goals: ["HW","EC","IL"],
keyActivity: "Activity 7: Community Helpers in School",
steps: ["Walk around school and meet: principal, peon, gardener, cook, security guard","Children greet each person respectfully (pranam/namaste)","Back in class: draw or discuss one school helper they met","Circle time: 'What do you like most about your school?' — round robin sharing","Goodbye Circle: each child says one new friend's name"],
materials: ["Drawing paper","Crayons","School helper flash cards"],
tip: "This activity builds safety, respect, and belonging. Point out the garden, library, kitchen — these become learning spaces throughout the year.",
deliverable: "Drawing of 'My Favourite School Helper'. Week 1 observation notes completed." }
]
},
{
num: 2, wclass: "wh-m1-2", theme: "🧍 My Body & Self-Awareness", days: "Days 6–10",
goals: ["HW","EC"],
days_data: [
{ n: 6, theme: "Body Parts & Rhymes", goals: ["HW","EC"],
keyActivity: "Activity 2: Rhyme with Actions — Body Part Songs",
steps: ["Sing 'Head, Shoulders, Knees & Toes' adding new body parts each round","Play 'Simon Says' using body parts — slow to fast pace","Ask: 'What can your hands do? Feet? Eyes?' — vocabulary building","Children trace their hand on paper and label fingers (teacher helps write)","Outdoor: relay race with body-part commands ('hop on one foot', 'balance on heels')"],
materials: ["Paper for hand tracing","Crayons","Open outdoor space"],
tip: "Use the child's home language for body parts first, then introduce Hindi/English equivalent. This builds vocabulary bridges, not barriers.",
deliverable: "Hand tracing artwork. Children can name 8+ body parts during goodbye circle." },
{ n: 7, theme: "My Feelings & Emotions", goals: ["HW","EC"],
keyActivity: "Emotion Faces — Mirror Activity",
steps: ["Show picture cards of different emotions: happy, sad, angry, scared, surprised","Ask children to make the face — exaggerate! Make it fun","Story: read an emotion-based picture book or tell a story","Children draw 'My Feeling Today' face — just a circle with an expression","Discuss: 'What do you do when you feel sad? Angry?'"],
materials: ["Emotion picture cards","Small mirrors (if available)","Drawing paper","Crayons"],
tip: "Never dismiss emotions. 'You feel scared — that's okay. Can you tell me more?' Validate before redirecting. SEL is foundational.",
deliverable: "Emotion drawing. Teacher notes children who express difficulty naming emotions — provide extra attention." },
{ n: 8, theme: "I Can Do It! — Confidence Building", goals: ["HW","EC"],
keyActivity: "Activity 4: Jigsaw Puzzles + 'I Am Special' Affirmations",
steps: ["Start with 2-piece puzzles, progress to 3 and 4-piece per child","After solving: 'I did it! I am a problem-solver!' — affirmation practice","Group activity: each child stands up and says one thing they're good at","Make an 'I Am Special' badge: I am ___ (brave/kind/creative...)","Outdoor: obstacle course — jump, crawl, balance. Everyone completes at their pace"],
materials: ["Jigsaw puzzles (2–5 piece)","Badge cards","Crayons","Obstacle course items"],
tip: "The goal is EFFORT, not completion. Celebrate the attempt. Use specific praise: 'I noticed how you tried three times with that puzzle!' ",
deliverable: "'I Am Special' badge. Observe which children have low confidence — note for extra encouragement plan." },
{ n: 9, theme: "Health & Hygiene Basics", goals: ["HW"],
keyActivity: "Activity 12: Handwashing Song & Routine",
steps: ["Discuss: 'Why do we wash hands?' COVID, illness, food safety","Demo correct handwashing steps — palm, back, between fingers, nails, wrists","Teach the handwashing song: 'Wash, wash, wash your hands...' with actions","Practice: everyone washes hands before meal time — make it a ritual","Activity 12A: Sequence cards — children arrange the steps in order"],
materials: ["Soap, water","Handwashing step picture cards","Towels"],
tip: "Make handwashing a NON-NEGOTIABLE daily ritual — before meals, after outdoor play, after toilet. It takes 3 weeks to form a habit. Be consistent every day.",
deliverable: "Children independently wash hands before meal time. Sequence cards arranged correctly by most children." },
{ n: 10, theme: "My Growth — Height & Weight", goals: ["HW","IL"],
keyActivity: "Activity 13: Measure Me! Height Recording",
steps: ["Activity 13A: Spread chart paper on floor, child lies down, trace body outline","Children tear and paste coloured paper inside the outline","Measure each child's height with a paper strip; write name on strip","Post all strips on wall — tallest to shortest visual comparison","Count: 'How many children are taller than this line?'"],
materials: ["Chart paper","Crayons","Paper strips","Weighing scale (optional)","Sketch pens"],
tip: "NEVER make children feel bad about their size. This is purely celebratory — 'Look how tall you are! You're growing!' Frame it as exciting data.",
deliverable: "Body outline artwork. Height chart with all children's names displayed on wall." }
]
},
{
num: 3, wclass: "wh-m1-3", theme: "👨👩👧 My Family & Friends", days: "Days 11–15",
goals: ["HW","EC","IL"],
days_data: [
{ n: 11, theme: "My Family Tree", goals: ["HW","EC"],
keyActivity: "Activity 3: My Family — Puppets & Songs",
steps: ["Sing the family rhyme: 'In this house, down the lane, lived a very happy family...'","Show puppets of family members — children identify roles of each","Discussion: 'Who is in your family? What does your mother/father do?'","Children draw their family on paper — as many members as they know","Activity 3 DIY: Make puppets using paper bags, fabric scraps, buttons"],
materials: ["Puppets or pictures of family members","Paper bags","Fabric scraps","Crayons","Glue"],
tip: "Families come in all forms. Avoid assuming nuclear family structure. Accept grandparents, aunts, single parents. Use the phrase 'people who love and care for you.'",
deliverable: "Family drawing. Paper puppet of one family member. Note children without family support for extra care." },
{ n: 12, theme: "Roles & Responsibilities at Home", goals: ["HW","EC"],
keyActivity: "Role Play — Family Jobs Drama",
steps: ["Discuss daily chores at home: cooking, cleaning, carrying water, shopping","Children enact a family member doing a chore — class guesses the job","Talk about how everyone in the family contributes — gender-neutral discussion","'My chore at home is ___' — each child shares","Art: draw 'One thing I do to help my family'"],
materials: ["Props for role play: broom, pot, bag","Drawing paper","Crayons"],
tip: "Actively challenge gender stereotypes — boys can cook, girls can fix things. Use stories and questions: 'Can your papa cook? Can your mama fix things?'",
deliverable: "Role play observed. Drawing of 'My Family Chore'. Oral sharing by 80% of class." },
{ n: 13, theme: "Stories from Home", goals: ["EC","IL"],
keyActivity: "Story Retelling — Home Stories",
steps: ["Tell a simple folk story related to family (use local folk tale or Annexure VII)","Ask sequencing questions: What happened first? Then? At the end?","Give 3 picture sequence cards — children arrange in story order","Partner activity: 'Tell your partner a story your family told you'","Create a class 'Story Wall' — children draw one scene from their favourite story"],
materials: ["Picture sequence cards","Story book / folk tale","Drawing paper","Story Wall display space"],
tip: "A child who cannot retell verbally can draw or point. Accept all forms of expression. Story retelling is a foundational literacy skill — practice daily.",
deliverable: "Story sequence arrangement. One story drawing per child. Begin informal listening assessment." },
{ n: 14, theme: "Festivals & Cultural Diversity", goals: ["HW","EC","IL"],
keyActivity: "Activity 10: Festival Celebration — Flash Cards",
steps: ["Show flash cards of national and local festivals — children identify and name","Discuss: 'What festival does your family celebrate? What do you wear? What do you eat?'","Sing a festival song together — use local seasonal festival","Activity 10D: 'Say the initial sound of your favourite festival sweet'","Art: decorate a paper 'diya' or festival motif — free expression"],
materials: ["Festival flash cards","Drawing paper","Crayons","Glitter/colour scraps (optional)"],
tip: "Celebrate EVERY festival mentioned by children. No festival is too small. This builds belonging, respect for diversity, and cultural pride simultaneously.",
deliverable: "Festival artwork. Vocabulary: children can name 3+ festivals. Cultural inclusion observed in discussion." },
{ n: 15, theme: "Week 3 — Family Showcase", goals: ["HW","EC","IL"],
keyActivity: "Family Puppet Show Performance",
steps: ["Groups of 3–4 use their puppets to act a short family scene (2–3 minutes)","After each performance: class claps, teacher asks 1 question to performers","Display all family drawings and puppets as a mini gallery","Send home a note: 'Ask your child about their puppet show today!'","Goodbye circle: each child says 'Thank you [classmate's name] for...'" ],
materials: ["Previously made puppets","Display wall","Parent note cards"],
tip: "Performance anxiety is real! Never force a child to present. Offer the option of showing their drawing instead. The goal is confidence, not perfection.",
deliverable: "Group performance completed. Gallery display done. Parent communication sent home." }
]
},
{
num: 4, wclass: "wh-m1-4", theme: "🏠 My Home & Neighborhood", days: "Days 16–20",
goals: ["HW","EC","IL"],
days_data: [
{ n: 16, theme: "Types of Houses Around Us", goals: ["EC","IL"],
keyActivity: "Block Building — My Dream House",
steps: ["Show pictures of different types of houses: kutcha, pucca, apartment, hut, tent","Discuss: 'What is your house like? How many rooms? Who lives there?'","Block Building area: children construct their house using blocks","Children describe their construction to a partner: 'My house has ___ rooms'","Count: How many windows? Doors? Floors? — number concepts embedded"],
materials: ["Pictures of house types","Building blocks","Drawing paper","Crayons"],
tip: "Do NOT show houses as better or worse. Every dwelling is a home. Frame it: 'All homes keep families safe and together.' Avoid any classism in discussion.",
deliverable: "Block structure (photograph it!). Oral description by each child of their home." },
{ n: 17, theme: "Community Helpers Near Me", goals: ["HW","EC","IL"],
keyActivity: "Activity 7: Community Helpers Dumb Charades",
steps: ["Flash cards: doctor, police, farmer, teacher, postman, shopkeeper, milkman","Discuss: 'What tool does each helper use?' 'How do they help us?'","Activity 7A: Dumb Charades — child enacts a helper, class guesses","Worksheet: match community helper to their tool/object","Role play the market: shopkeeper + customer — practice counting coins"],
materials: ["Community helper flash cards","Matching worksheet","Play coins","Props for role play"],
tip: "Expand beyond stereotypical helpers. Include street sweeper, anganwadi worker, ASHA worker — children of their families may be in the class. Honour all work.",
deliverable: "Matching worksheet completed. Role play observed. Vocabulary: can name 5+ community helpers." },
{ n: 18, theme: "Safety Inside & Outside", goals: ["HW","EC"],
keyActivity: "Activity 8: Safety Cards — Red/Green",
steps: ["Introduce concept: things that are SAFE (green) vs. NOT SAFE (red)","Show cards — children hold up red or green response card","Discuss: safe/unsafe behaviour in classroom, bathroom, road, playground","Activity 8A: children draw one safety rule they will follow","Role play: 'Stop, Look, Cross' for road safety — practice outside"],
materials: ["Red and green cards (per child)","Safety scenario cards","Drawing paper"],
tip: "Also introduce body safety and 'Safe-Unsafe Touch' in age-appropriate language. Use: 'Your body belongs to you. It's okay to say No.' Link to POCSO awareness.",
deliverable: "Safety drawing displayed. All children can demonstrate 'Stop, Look, Cross' on the road." },
{ n: 19, theme: "Shapes & Sizes at Home", goals: ["IL","EC"],
keyActivity: "Shape Hunt — Finding Shapes in the Classroom",
steps: ["Introduce basic shapes: circle, square, rectangle, triangle — show objects","Shape hunt: walk around classroom pointing out shapes in everyday objects","Sort collected objects by shape into labelled trays","Art: collage using torn paper pieces to make a house — identify shapes used","Numeracy: count how many circles/squares they found — which is more?"],
materials: ["Everyday objects (clock, book, door)","Shape sorting trays","Torn paper pieces","Glue","Paper"],
tip: "Use the classroom environment as your curriculum. Every door, book, window, and clock is a teaching tool. Point and name constantly throughout the day.",
deliverable: "Shape collage. Children can identify and name 4 basic shapes. Sorting activity completed." },
{ n: 20, theme: "Month 1 Week 4 — Review & Portfolio", goals: ["HW","EC","IL"],
keyActivity: "Portfolio Day — My First Month at School",
steps: ["Collect all of a child's work from the month — arrange in a folder/envelope","Children choose their FAVOURITE piece from the month","Circle sharing: 'I chose this because...' — 2 sentences per child","Teacher does quick individual check-in: 'How do you feel about school now?'","Class: make a collective 'We Love Our School' banner — everyone adds their thumb print flower"],
materials: ["Work portfolio folders","Thumb print pads or paint","Banner paper","Sketch pens"],
tip: "Month-end portfolio review is assessment AND celebration. Ask parents to come for 10 minutes if possible. Their presence validates the child's effort enormously.",
deliverable: "Portfolio compiled per child. Month 1 assessment checklist completed. 'We Love Our School' banner displayed." }
]
},
{
num: 5, wclass: "wh-m1-5", theme: "📚 School Routines & Free Expression", days: "Days 21–25",
goals: ["HW","EC","IL"],
days_data: [
{ n: 21, theme: "Calendar, Weather & Morning Routines", goals: ["HW","IL"],
keyActivity: "Activity: Calendar Activity — Day, Date, Season, Weather",
steps: ["Create a Calendar Corner with: days of week, date, month, weather chart, season","Morning circle: children identify today's day, date, weather looking outside","Ask: 'What day was it yesterday? What will tomorrow be?'","Mark a child's birthday or upcoming festival on the calendar","Count: How many sunny days this week? Cloudy? — tally marks"],
materials: ["Calendar chart","Weather picture cards","Season display","Tally chart"],
tip: "The Calendar activity should happen EVERY day as the first activity. It develops time concepts, numeracy (counting), weather science, and oral language simultaneously.",
deliverable: "Calendar Corner set up permanently. Children can identify today's day and weather independently." },
{ n: 22, theme: "Story Time & Retelling", goals: ["EC"],
keyActivity: "Big Book Read-Aloud + Story Sequencing",
steps: ["Choose a short picture book or Annexure VII story — read aloud with expression","Show pictures, ask questions: 'What do you see? What might happen next?'","After story: use 4 sequence picture cards — children arrange in order","Partner retelling: child A tells the beginning, child B tells the end","Draw favourite scene from the story — write character's name (teacher scribes if needed)"],
materials: ["Picture story book","Sequence picture cards","Drawing paper","Crayons"],
tip: "Read with EXPRESSION — change voices, use suspense, pause for questions. A dramatic read-aloud is the single most powerful literacy tool you have. Use it daily.",
deliverable: "Story sequence arranged. Favourite scene drawing. Can retell with beginning-middle-end structure." },
{ n: 23, theme: "Our School Garden", goals: ["HW","IL"],
keyActivity: "Activity 6B: Plant a Seed — Rajma/Chana Sprouting",
steps: ["Take children to the school garden — observe and name what they see","Activity 6B: each child gets 2–3 rajma/chana seeds in a small container with soil","They water their seeds and mark the container with their name","Discuss: 'What does a plant need to grow?' Sun, water, soil, air, love!","Predict: 'How many days before we see a sprout?' — start a count chart"],
materials: ["Seeds (rajma/chana)","Small containers or paper cups","Soil","Water","Watering cans"],
tip: "The seed sprouting activity runs for 2 weeks — build in daily 3-minute 'plant check' into morning circle. Children CARE about their seeds. It teaches responsibility.",
deliverable: "Seed planted per child. Prediction recorded on count chart. Children can name what plants need to grow." },
{ n: 24, theme: "Art Corner — Free Creative Expression", goals: ["HW","EC"],
keyActivity: "Activity: Free Art — Any Medium, Any Theme",
steps: ["Set up art stations: finger painting, clay moulding, tearing-pasting, crayon rubbing","Children choose their station freely — NO instruction on WHAT to make","Teacher circulates, asks questions: 'Tell me about what you're making'","After 30 min: mini gallery walk — appreciate everyone's work","Clean-up as a routine: songs while tidying ('Clean up, clean up, everybody clean up...')"],
materials: ["Finger paints","Clay or playdough","Old newspapers","Crayons","Glue","Fabric scraps"],
tip: "This is a NO-PRODUCT activity — no right or wrong outcome. The process IS the learning. Resist giving children models to copy — it kills creativity.",
deliverable: "Art work displayed. Children comfortable with clean-up routine. Note creative risks each child took." },
{ n: 25, theme: "Physical Fitness Day", goals: ["HW"],
keyActivity: "Activity 15 & 16: Free Play + Yoga/Pranayama",
steps: ["Lead 5 minutes of simple Yogasana: tree pose, cat pose, butterfly, mountain pose","Pranayama: 3 rounds of deep belly breathing — 'Breathe in like you smell a flower...'","Outdoor free play: hopscotch, skipping, balancing beam, ball play","Structured game: 'Freeze Dance' — builds coordination, listening, self-regulation","Return indoors: cool down stretches + discuss 'How does your body feel after exercise?'"],
materials: ["Open outdoor space","Rope for skipping","Chalk for hopscotch","Music player (optional)"],
tip: "Physical activity is NOT a break from learning — it IS learning. Motor development directly links to cognitive development. Give it the full 45+ minutes it deserves.",
deliverable: "Children experience at least 2 yogasanas. Gross motor observation updated. Outdoor play = 45 minutes minimum." }
]
},
{
num: 6, wclass: "wh-m1-6", theme: "🎨 Colors, Shapes & Patterns", days: "Days 26–30",
goals: ["IL","EC","HW"],
days_data: [
{ n: 26, theme: "The World of Colors", goals: ["IL","EC"],
keyActivity: "Color Hunt + Primary Color Mixing",
steps: ["Identify primary colors using natural objects: red (flower), blue (sky), yellow (banana)","Color mixing demonstration: red + blue = purple! yellow + blue = green!","Children experiment with finger painting — mix 2 colors and see what happens","Outdoor color hunt: find 3 red things, 3 blue things, 3 green things in nature","Vocabulary: name colors in home language AND Hindi/English"],
materials: ["Finger paints (primary colors)","White paper","Natural color objects","Drawing paper"],
tip: "Let children DISCOVER color mixing — don't just tell them. The moment of surprise ('It turned green!') is the learning. Facilitate the discovery, don't demonstrate it first.",
deliverable: "Color mixing experiment sheet. Oral vocabulary: 8+ colors in at least one language." },
{ n: 27, theme: "Basic Shapes — Everywhere!", goals: ["IL","EC"],
keyActivity: "Shape Stamps + Shape Walk",
steps: ["Make shape stamps from carved potato or sponge: circle, square, triangle, rectangle","Stamp patterns on paper — alternating shapes, colors, sizes","Shape walk: find shapes in nature — spider web (circle), leaf (oval), rock (irregular)","Sort objects into shape boxes — circle box, square box, triangle box","Count: how many of each shape? Make a bar graph with stickers"],
materials: ["Potato/sponge stamps","Paint","Sorting boxes","Nature objects"],
tip: "Shapes in nature are rarely perfect. A leaf is 'oval-ish.' Celebrate imperfect shapes — they're real! This builds mathematical thinking over rote memorisation.",
deliverable: "Shape stamp art. Can sort objects by shape. Understands circle, square, rectangle, triangle." },
{ n: 28, theme: "Patterns in Nature & Life", goals: ["IL","EC"],
keyActivity: "ABAB Pattern Making with Natural Objects",
steps: ["Show natural patterns: stripes on a tiger, petals on a flower, a saree border","Create ABAB patterns using stones and leaves: stone-leaf-stone-leaf...","Bead threading: red-blue-red-blue — predict what comes next","Clap patterns: clap-stomp-clap-stomp — 'What comes next?' — body patterns","Draw a border pattern on paper: triangle-circle-triangle-circle..."],
materials: ["Stones, leaves, seeds","Beads + string","Drawing paper","Crayons"],
tip: "Pattern recognition is the FOUNDATION of mathematical thinking. Extend patterns daily — in music (beat), in movement (dance), in nature walks. It's everywhere!",
deliverable: "Bead pattern string. Can extend and predict an ABAB pattern. Can identify patterns in everyday context." },
{ n: 29, theme: "Sorting & Classifying", goals: ["IL"],
keyActivity: "Kitchen Sort — Grains, Pulses & Objects",
steps: ["Bring a mix of: dal, rajma, chana, rice — all mixed together","Children sort into separate containers by type — fine motor + classification","Sort again by COLOR — same objects, different rule","Sort classroom toys/objects by: big/small, heavy/light, smooth/rough","Discussion: 'How did you decide how to sort?'"],
materials: ["Mixed grains and pulses","Sorting trays or bowls","Classroom objects of varying sizes"],
tip: "Sorting by DIFFERENT attributes (color, then size, then shape) develops flexible thinking — a critical higher-order skill. Ask 'Can you sort them a DIFFERENT way?'",
deliverable: "Completed sorting activity. Can classify using 2+ different attributes. Fine motor observation updated." },
{ n: 30, theme: "Month 1 — Celebration & Assessment", goals: ["HW","EC","IL"],
keyActivity: "Month-End Portfolio Sharing + Thumb Print Art",
steps: ["Morning: children review their portfolio from the month with a partner","Each child shows their BEST piece and says: 'I made this because I like ___'","Class creates a collective Month 1 mural: thumb print flowers, handprints","Assessment: teacher uses Annexure V Month 1 checklist — informal observation only","Goodbye: sing the goodbye song — take a class photo for portfolio!"],
materials: ["Portfolios","Thumb print pads","Mural paper","Month 1 assessment checklist"],
tip: "Month-end assessment is CELEBRATION, not examination. Frame every observation positively. 'Priya is making good progress with shapes' — never 'Priya doesn't know...'",
deliverable: "Month 1 assessment completed per child. Mural displayed. Portfolio updated with best-work selection." }
]
}
]
},
{
id: 2,
weeks: [
{
num: 7, wclass: "wh-m2-1", theme: "🔢 Numbers, Counting & Numeracy Play", days: "Days 31–35",
goals: ["IL","EC"],
days_data: [
{ n: 31, theme: "Numbers 1–5: Meeting Old Friends", goals: ["IL"],
keyActivity: "Number Stories + Concrete Counting",
steps: ["Tell a story with numbers: 'Once upon a time, 3 elephants went for a walk...'","Children show numbers using fingers — 1 to 5, back and forth","Count real objects: 3 stones, 5 leaves, 4 pencils — one-to-one correspondence","Number songs: 'Five Little Ducks', 'Three Little Pigs'","Write numbers 1–5 in sand tray or on slate — trace with finger first"],
materials: ["Story cards","Counting objects (stones/seeds)","Sand tray or slates","Number cards 1–5"],
tip: "ALWAYS use concrete objects before written numerals. A child who can recite 1–10 but can't count 5 objects hasn't learned number sense — they've memorised sounds.",
deliverable: "Can count 5 objects with 1-to-1 correspondence. Can identify numerals 1–5. Sand number tracing completed." },
{ n: 32, theme: "Counting Everything Around Us", goals: ["IL","EC"],
keyActivity: "Counting Walk + Tally Chart",
steps: ["Go on a counting walk: count trees, windows, doors, children in class","Use tally marks to record — introduce the 4+diagonal tally system","'How many girls? How many boys? Who has more?'","Number line on floor with chalk — children hop to the correct number","'Show me 4 fingers... now add 1 more. How many?'"],
materials: ["Chalk for number line","Tally chart paper","Counting board"],
tip: "Mathematical vocabulary is as important as the numbers. Use constantly: more than, less than, equal to, how many, one more, one less. Embed in conversation.",
deliverable: "Tally chart completed. Can use number line to identify position. Understands more/less with numbers 1–5." },
{ n: 33, theme: "More, Less & Equal", goals: ["IL"],
keyActivity: "Balance Scale Exploration — Heavier & Lighter",
steps: ["Show balance scale: put objects on each side — which side goes down?","Introduce vocabulary: more, less, equal, same, different, heavier, lighter","Line up 5 children by height: who is tallest? shortest? Find middle person","Number game: show 3 objects and 5 objects — which is more? By how much?","Draw: two sets of objects showing more vs. less"],
materials: ["Balance scale or improvised version","Varied weight objects","Children (as the activity!)"],
tip: "Comparison is the root of mathematical reasoning. Never rush to the answer — ask: 'How do you KNOW it's more? Can you prove it?' This builds mathematical argument skills.",
deliverable: "Can compare two quantities correctly. Uses vocabulary: more, less, equal. Balance scale activity observed." },
{ n: 34, theme: "Number Songs, Games & Stories", goals: ["IL","EC"],
keyActivity: "Number Rhymes + Number Story Creation",
steps: ["Sing number rhymes: 'One Two Buckle My Shoe', 'Ten in the Bed'","Play 'Number Hunt': find objects with 3/4/5 of something in the room","Story creation: 'Once there were ___ monkeys...' children fill in numbers","Domino game: match dots to numerals — partner play","Abacus exploration: slide beads, count groups, compare rows"],
materials: ["Abacus","Dominoes","Number story cards","Musical instruments for beat counting"],
tip: "Songs and games cement number knowledge FAR more than worksheets. A child who can sing '5 little ducks' with actions has better number sense than one who copies 1–5.",
deliverable: "Can sing 2+ number rhymes. Participated in domino game. Can use abacus to show numbers 1–5." },
{ n: 35, theme: "Numbers in My World — Number Stories", goals: ["IL","EC"],
keyActivity: "Create a Number Story Book (Pages 1–5)",
steps: ["Each child gets 5 small papers — one for each number 1–5","On each page: draw that many objects (1 sun, 2 birds, 3 flowers...)","Teacher writes the numeral on each page, child traces","Bind pages together — 'My Very Own Number Book!'","Share with a partner, count together aloud"],
materials: ["5 small papers per child","Crayons","Binding clips or staples"],
tip: "Making a personal book is powerful — children KEEP and REREAD their own books. This is a real literacy and numeracy artifact. Display then send home on Friday.",
deliverable: "Personal number book 1–5 completed. Can read back their own book to teacher." }
]
},
{
num: 8, wclass: "wh-m2-2", theme: "🔤 Language, Literacy & Oral Development", days: "Days 36–40",
goals: ["EC","IL"],
days_data: [
{ n: 36, theme: "Listening Like a Champion", goals: ["EC"],
keyActivity: "Sound Walk + Listening Bingo",
steps: ["Silent walk outside: 'What sounds do you hear? Rustling leaves? Birds? Wind?'","Back inside: everyone shares one sound they heard — build a 'Sound Wall'","Listening Bingo: teacher makes sounds (tap, clap, whistle) — children identify and mark","Story: read a text-only short story (no pictures) — children listen and then draw what they imagined","'Simon Says' — focused listening game"],
materials: ["Sound Bingo cards","Crayons","Drawing paper","Bell or instrument"],
tip: "Listening is the FIRST literacy skill — before reading, before writing. Many children with 'attention problems' actually have underdeveloped listening skills. Practise daily with purpose.",
deliverable: "Sound drawing completed. Listening Bingo participation. Teacher notes listening duration per child." },
{ n: 37, theme: "Oral Storytelling — Children as Authors", goals: ["EC"],
keyActivity: "Story Starters + Pair Storytelling",
steps: ["Show a picture: a forest, a market, a river. 'What story is happening here?'","Story starter: 'One morning, a tiny ant woke up and discovered...' — children continue in pairs","Practice sequencing: first, then, next, finally — use physical actions for each word","Each pair performs their story to another pair","Draw: the ENDING of your story — most important moment"],
materials: ["Stimulus pictures (forest/market/river)","Story sequence words chart","Drawing paper"],
tip: "Never correct a child's story content. Wild, impossible stories are WONDERFUL — they show imagination. Only gently model connective language: 'And then what happened?'",
deliverable: "Pair story performed. Story ending drawing completed. Can use sequence words (first, then, next, finally)." },
{ n: 38, theme: "Sounds & Phonological Awareness", goals: ["EC"],
keyActivity: "Beginning Sound Games — Alliteration & Rhyme",
steps: ["'I Spy': I spy with my little eye, something beginning with /m/...'","Clap syllables: Ra-vi (2), A-mi-ta (3), a-na-na-s (4) — feel the beats","Rhyme time: cat-bat-hat-mat; sun-run-fun-bun — extend the chain","Beginning sound matching: picture cards grouped by initial sound","Tongue twisters in home language — fun with sounds!"],
materials: ["Picture cards sorted by initial sound","Syllable clapping game","Rhyme word sets"],
tip: "Phonological awareness is SOUND-based, not letter-based at this stage. Children don't need to read — they need to HEAR sounds. Do it with eyes closed!",
deliverable: "Can clap syllables of own name and 5 more words. Can identify beginning sounds of common objects." },
{ n: 39, theme: "Picture Talk & Vocabulary Building", goals: ["EC","IL"],
keyActivity: "Market Picture — Vocabulary Explosion",
steps: ["Show a detailed market/bazaar picture — children observe for 1 full minute silently","'What do you see?' — rapid round: each child names one thing, no repeats","Create a 'Word Wall' — write and draw all words mentioned (50+ words is normal!)","Use new words in sentences: 'The vegetable seller is ___ing'","Play: 'If I went to the market, I would buy...' — memory chain game"],
materials: ["Detailed market/nature/classroom picture","Word wall chart paper","Sketch pens"],
tip: "Vocabulary is the #1 predictor of reading comprehension. Make word walls visual and permanent — point to them daily. Add 5+ new words per week in all subjects.",
deliverable: "Word Wall with 30+ labelled items. Children can use 5+ new words in sentences by end of activity." },
{ n: 40, theme: "Creative Storytelling Showcase", goals: ["EC","HW"],
keyActivity: "Puppet Show Performance Day",
steps: ["Children use their paper bag puppets (Week 3) or new ones","Groups of 2–3 plan and perform a 2-minute story using puppets","Audience practices: good sitting, quiet listening, clapping at end","Each performance ends with 1 question from the audience","Record on teacher's phone if possible — children LOVE watching themselves"],
materials: ["Puppets from earlier weeks or new ones","Simple puppet theatre (table on its side)","Recording device (optional)"],
tip: "Puppetry removes performance anxiety — the puppet speaks, not the child! Even the shyest child often performs brilliantly through a puppet. Use this regularly.",
deliverable: "Every child performed in a puppet show. Oral language confidence observation updated. Video record if possible." }
]
},
{
num: 9, wclass: "wh-m2-3", theme: "🌍 Our Community & Environment", days: "Days 41–45",
goals: ["HW","EC","IL"],
days_data: [
{ n: 41, theme: "Community Helpers — Healers & Farmers", goals: ["HW","EC","IL"],
keyActivity: "Activity 7: Community Helper Visitor (Role Play)",
steps: ["If possible, invite a real community helper (doctor/farmer/ASHA worker)","Prepare children to ask 3 questions: What do you do? What tools do you use? How do you help us?","Role play: children dress up as doctor/farmer — diagnose, prescribe, harvest!","Matching activity: helper + tool + place of work","Discussion: 'What would happen if there were no doctors? No farmers?'"],
materials: ["Community helper costumes (simple: coat for doctor, hat for farmer)","Tool flash cards","Matching worksheet"],
tip: "Real visitors are transformative. Even a parent who works as a plumber, cook, or auto driver is a community helper. Every occupation is honorable and worth knowing.",
deliverable: "Matching worksheet completed. Role play observed. Can name and describe role of 6+ community helpers." },
{ n: 42, theme: "Our Market & Transactions", goals: ["IL","EC"],
keyActivity: "Play Market — Buying & Selling with Play Money",
steps: ["Set up a classroom market: vegetable stall, fruit stall, grocery stall","Children are shopkeepers and customers — rotate roles","Use play money for transactions (coins made of cardboard)","Practice: 'How much does this cost?' 'Give me 3 tomatoes please.'","Count: how many items sold? How many coins collected? More or less?"],
materials: ["Play money/coins","Toy vegetables/fruits or real ones","Shop labels","Price tags (simple: 1, 2, 3)"],
tip: "The market game simultaneously develops oral language, mathematics, social skills, and understanding of economics. It's 4 subjects in 1 joyful activity!",
deliverable: "Participated in role play market. Can count objects and give/receive 'payment'. Oral transaction practiced." },
{ n: 43, theme: "National Symbols — Proud to Be Indian", goals: ["HW","EC"],
keyActivity: "Activity 9: National Symbols — Recognition & Colouring",
steps: ["Show pictures: national flower (lotus), bird (peacock), animal (tiger), fruit (mango), tree (banyan)","Discussion: 'Why is the peacock our national bird? What is special about it?'","Children colour an outline picture of each national symbol","Sing Jana Gana Mana softly together — identify it as national anthem","'I am proud to be Indian because ___' — round robin sharing"],
materials: ["Outline pictures of national symbols","Crayons","Pictures of national flag, anthem, pledge"],
tip: "National pride should feel warm and inclusive, not exclusive. Frame it: 'India is home to people of many languages, religions, and traditions — ALL are Indian!'",
deliverable: "National symbols colouring page. Can name and identify 5 national symbols." },
{ n: 44, theme: "Our Environment — Clean & Green", goals: ["HW","IL"],
keyActivity: "Activity 6A: Classroom & School Clean-Up Campaign",
steps: ["Discuss: 'What happens when we throw trash everywhere?' Use pictures","Go around school: identify trash, litter, clean vs. dirty spots","Each child picks up 5 pieces of litter and puts in the correct bin","Make a poster: 'Keep Our School Beautiful' — children draw, teacher writes words","Set up a recycling corner: paper, plastic, organic — sort trash by type"],
materials: ["Gloves (optional)","Trash bags","Recycling bins (3)","Poster paper","Crayons"],
tip: "Environmental responsibility must START as a physical habit. 'Talk about ecology' has no impact if children never physically care for their environment. ACT, then discuss.",
deliverable: "School clean-up done. Recycling corner established. Poster displayed. Habit of not littering reinforced." },
{ n: 45, theme: "Community Values & Seva Bhav", goals: ["HW","EC"],
keyActivity: "Activity 11: Stories of Great Personalities",
steps: ["Tell a story: Mahatma Gandhi's act of service or Dr. B.R. Ambedkar's struggle","Discussion: 'What is kindness? Sharing? Helping?' Use specific examples","'What is one kind thing I can do for someone today?'","Children perform a 'Seva Task': water the plants, clean a shelf, help a friend","End: each child says 'I will help my community by ___'"],
materials: ["Story picture cards of great personalities","Seva task list chart"],
tip: "Values education is most effective through stories + immediate action. The Seva Task bridges story to life. Follow up tomorrow: 'Did you do a kind act at home last night?'",
deliverable: "Story retold in own words. Seva task completed. Can connect values to real-life actions." }
]
},
{
num: 10, wclass: "wh-m2-4", theme: "🌱 Nature, Plants & Living World", days: "Days 46–50",
goals: ["IL","HW"],
days_data: [
{ n: 46, theme: "Plants & What They Need", goals: ["IL","EC"],
keyActivity: "Activity 6B: Check Our Seeds! Plant Growth Journal",
steps: ["Check the rajma/chana seeds planted in Week 5 — who has sprouted?","Draw and record: leaf shape, root direction, height of stem","Discuss: 'What did the plants that grew well have in common? (Sun, water, soil)'","New planting: sow a fast-growing seed (mustard/methi) in a new pot","Begin a Plant Growth Journal — simple daily drawings of growth stages"],
materials: ["Planted seeds from Week 5","New seeds (mustard/methi)","Plant growth journal (stapled pages)","Crayons"],
tip: "The seed activity teaches PATIENCE and scientific observation. If seeds didn't sprout, explore WHY — it's a better learning opportunity than if they all grew perfectly!",
deliverable: "Plant growth journal entry. Oral explanation of what plants need to grow. Comparing two plants observed." },
{ n: 47, theme: "Animals in Our World", goals: ["IL","EC"],
keyActivity: "Animal Classification — Land, Water, Sky",
steps: ["Show animal pictures — sort by where they live: land, water, sky, both","Explore textures: feathers, fur, scales, shells — feel and describe each","Animal sounds game: teacher makes a sound — children identify and mimic","Discussion: 'Which animals have we seen near our home/school?'","Draw: My Favourite Animal — label body parts (teacher scribes)"],
materials: ["Animal picture cards","Texture samples (feathers/fur/scale pictures)","Drawing paper"],
tip: "Connect to local biodiversity — sparrows, crows, buffaloes, dogs are as valid as tigers and peacocks. Start with familiar before exotic. Personal connection drives learning.",
deliverable: "Animal classification chart completed. Can sort 12+ animals by habitat. Animal drawing with 3+ labelled parts." },
{ n: 48, theme: "Water & Its Uses", goals: ["IL","HW","EC"],
keyActivity: "Float & Sink Experiment + Water Conservation",
steps: ["Float & sink: test objects in a tub — predict BEFORE testing, then test","Record: floating objects = leaf, cork, paper; sinking = stone, coin, key","Discussion: 'Where does our water come from? Rain, river, well, tap'","'What do we use water for? What if there was no water?'","Water conservation pledge: 'I will close the tap while brushing...'"],
materials: ["Water tub","Varied objects (leaf, coin, cork, stone, paper)","Float/sink recording chart"],
tip: "The PREDICT-then-TEST method is the heart of scientific thinking. Never show the result first. Let children be WRONG — wrong predictions lead to the best discussions!",
deliverable: "Float/sink chart completed with predictions and results. Can state 3 reasons water is important. Pledge made." },
{ n: 49, theme: "Weather, Seasons & Sky", goals: ["IL","EC"],
keyActivity: "Weather Journal + Sky Observation",
steps: ["Go outside and observe the sky for 10 minutes — record what you see","Weather chart: sunny, cloudy, rainy, windy — update daily with a tally","Discuss the 4 seasons — connect to local festivals and crops","'What do you wear in winter? Summer? Rains?' — vocabulary and science","Draw: 'What does the sky look like today?' — exact observation, not imagination"],
materials: ["Weather journal (class chart + individual pages)","Sky observation worksheet","Season picture cards"],
tip: "Link weather to math: 'We've had 8 sunny days and 2 rainy days this month — which is more?' Science and numeracy integration without extra planning.",
deliverable: "Personal weather observation drawing. Can name 4 seasons. Weather chart tallied correctly." },
{ n: 50, theme: "Earth Care — Our Responsibility", goals: ["HW","IL","EC"],
keyActivity: "Activity 6E: Arrange Leaves + Nature Mandala",
steps: ["Collect fallen leaves, flowers, petals, pebbles from school garden","Sort leaves by size: largest to smallest — ordinal thinking","Create a nature mandala: arrange objects in a circular pattern on ground","Photograph! Then return objects to nature — leave no trace principle","Discussion: 'What can we do every day to care for the Earth?'"],
materials: ["Collected natural objects","Camera/phone for photo","No additional materials needed — nature IS the art supply"],
tip: "Nature mandalas are impermanent — and that's the POINT. Learning to create something beautiful and let it go teaches non-attachment and mindfulness. Photograph to preserve.",
deliverable: "Nature mandala created (photographed). Can name 3 Earth care actions. Ordered leaves from large to small." }
]
},
{
num: 11, wclass: "wh-m2-5", theme: "🎭 Stories, Rhymes & Creative Expression", days: "Days 51–55",
goals: ["EC","HW","IL"],
days_data: [
{ n: 51, theme: "Phonological Awareness — Rhyme Time", goals: ["EC"],
keyActivity: "Rhyme Chain Games + Onset-Rime Matching",
steps: ["Rhyme chain: cat → bat → hat → mat → sat... how long can we go?","Clap if it rhymes game: 'cat-bat? YES! cat-dog? NO!' — fast and fun","Onset-rime: 'Take away the /c/ from cat... what's left? (-at)'","Rhyme card matching pairs: picture cards that rhyme — find the partner","Create your own rhyme: children suggest nonsense rhymes — laugh together!"],
materials: ["Rhyme pair picture cards","Onset-rime word cards","Clapping rhythm (no materials needed)"],
tip: "Nonsense rhymes are PERFECTLY FINE. 'cat-zat-bat-fat' — the phonological processing is happening even with made-up words. Laugh together. Keep it low-pressure.",
deliverable: "Can generate rhyming pairs. Can separate onset from rime in CVC words. Rhyme card matching completed." },
{ n: 52, theme: "Letter Shapes — My Name in Print", goals: ["EC"],
keyActivity: "Name Tracing, Stamping & Sand Writing",
steps: ["Each child traces their name cards using finger — in the air, on the desk, on paper","Sand tray writing: trace name letters in sand — sensory + motor learning","Stamp each letter of name using letter stamps or cut vegetable letters","Find the FIRST LETTER of your name on objects around the classroom","'My name starts with ___ and so does ___' — initial letter connection"],
materials: ["Name cards","Sand trays","Letter stamps (or cut potatoes)","Ink pads","Letter chart"],
tip: "Children's NAMES are the most powerful literacy tool. Every child cares deeply about their name. Use it to teach letter recognition, initial sounds, and print directionality.",
deliverable: "Name traced correctly. Can identify first letter of own name on other objects. Sand tray writing observed." },
{ n: 53, theme: "Festival Art & Creative Design", goals: ["HW","EC"],
keyActivity: "Activity 10C: Class Decoration for Upcoming Festival",
steps: ["Identify an upcoming festival — involve children in choosing how to decorate","Plan: 'What materials do we need? Who does what?' — democratic planning","Create decorations: paper cutting, flower chains, rangoli stencils, paper lanterns","Display in classroom and at school entrance","Song/dance practice: learn one song associated with the festival"],
materials: ["Crepe paper","Scissors","Glue","Rangoli colours or chalk","Flowers (if available)"],
tip: "Festival decorating is joyful and socially bonding. It also involves planning (math), creativity (art), teamwork (social) and cultural knowledge. Pure integrated learning.",
deliverable: "Class decorated for festival. Every child contributed something. Festival song learned and sung." },
{ n: 54, theme: "Great Personalities — Stories of Courage", goals: ["HW","EC"],
keyActivity: "Activity 11: Story + Role Play of a Great Personality",
steps: ["Tell the story of one great personality relevant to your region/community","Discussion: 'What quality made this person great? Courage? Kindness? Honesty?'","Role play: child enacts the personality — what would they say today?","'What great thing would YOU like to do when you grow up?'","Draw: 'When I grow up, I will ___'"],
materials: ["Personality picture cards and story","Drawing paper","Simple costume props (optional)"],
tip: "Include personalities from diverse backgrounds — tribals, women, Dalits, scientists, farmers, teachers. Show that greatness comes in all forms. Representation matters.",
deliverable: "Story retold. Role play performed. 'When I Grow Up' drawing completed. Values vocabulary: courage, honesty, kindness." },
{ n: 55, theme: "Month 2 Mid-Point — Sharing & Review", goals: ["HW","EC","IL"],
keyActivity: "Show & Tell — My Favourite Learning This Month",
steps: ["Each child chooses one piece of work from Month 2 to present","Sentence frame: 'I made ___. I learned ___ from it.'","Peer response: 'I liked your work because ___'","Class votes: Funniest, Most Creative, Most Colourful — everyone gets a vote","Teacher updates individual assessment checklist — language, numeracy, social skills"],
materials: ["Work portfolios","Voting stars (small stickers)","Assessment checklist"],
tip: "Peer appreciation is as important as teacher appreciation. 'I liked your work because...' teaches children to articulate aesthetic judgment and builds community.",
deliverable: "Show & Tell completed for all children. Peer feedback given. Assessment checklist updated." }
]
},
{
num: 12, wclass: "wh-m2-6", theme: "🔢 Numbers 6–10 & Measurement", days: "Days 56–60",
goals: ["IL","EC"],
days_data: [
{ n: 56, theme: "Numbers 6–10 — The Next Five", goals: ["IL"],
keyActivity: "Number Stories 6–10 + Object Counting",
steps: ["Extend number story book to pages 6–10","Count collections: groups of 6, 7, 8, 9, 10 objects — always use real objects","Number line hopping: jump to 7! hop back to 4! which is more?","Subitising game: flash a card briefly — 'how many? don't count, just KNOW'","Number 10 frame: fill in the 10 frame with counters"],
materials: ["Number story book (continue from Week 7)","10-frame cards","Counters","Number line on floor with chalk"],
tip: "Subitising (instantly recognising quantity without counting) is a critical numeracy skill that most curricula skip. Practice it daily — flash cards for 3 seconds, say the number.",
deliverable: "Number book pages 6–10 complete. Can count objects to 10 with accuracy. Uses 10-frame competently." },
{ n: 57, theme: "Comparing & Ordering Numbers", goals: ["IL"],
keyActivity: "Number Line Ordering + Greater/Fewer Games",
steps: ["Give children number cards 1–10 — arrange themselves in order (human number line!)","Turn over 2 cards: which is bigger? smaller? by how much?","'Stand up if your number is MORE than 5!' — whole body numeracy","Counting game: start at 3, count on to 8 — bridging numbers","Order a set of 5 numbers from smallest to largest on a strip"],
materials: ["Number cards 1–10 (per pair)","Ordering strips","Markers"],
tip: "The HUMAN number line is magical — children ARE the numbers. They physically arrange themselves, argue about who comes before/after, justify their position. Active, social math.",
deliverable: "Can order numbers 1–10. Can identify numbers greater than/less than a given number. Human number line completed." },
{ n: 58, theme: "Introduction to Addition — Joining Together", goals: ["IL","EC"],
keyActivity: "Story Sums — Joining Groups",
steps: ["Story: '3 ducks were swimming. 2 more ducks came. How many now?'","Use objects to act it out — physically join two groups and count the total","Show with fingers: 3 fingers + 2 fingers = count all = 5","Number story cards: children pick a card and tell a joining story","Draw: two groups of objects and the total"],
materials: ["Story sum cards","Counting objects","Drawing paper","Crayons"],
tip: "Addition starts as a STORY, not a symbol. Never introduce + sign before children can physically and orally join groups. The symbol is just shorthand for the concept.",
deliverable: "Can solve joining problems with objects up to 10. Tells a number story with addition structure." },
{ n: 59, theme: "Measurement — Tall, Short, Heavy, Light", goals: ["IL","EC"],
keyActivity: "Measurement Explorations — Non-Standard Units",
steps: ["Measure classroom objects using hand spans, pencils, books, footsteps","'The door is 8 hand spans wide. The window is 5. Which is wider?'","Balance: use balance scale with classroom objects — which is heavier?","Order 5 objects from tallest to shortest — children arrange physically","Vocabulary: tall, short, long, wide, narrow, heavy, light, same, different"],
materials: ["Balance scale","Various classroom objects","Non-standard units (blocks, pencils)","Measuring strip"],
tip: "Non-standard measurement BEFORE standard measurement — this is correct developmentally. Children need to understand WHY we need standard units through experiencing inconsistency.",
deliverable: "Can use non-standard units to measure and compare. Uses measurement vocabulary correctly in context." },
{ n: 60, theme: "Month 2 Celebration & Portfolio", goals: ["HW","EC","IL"],
keyActivity: "Month 2 Portfolio + Class Number Book Creation",
steps: ["Compile Month 2 portfolios — each child adds 3 new pieces","Create a CLASS NUMBER BOOK: each child contributes pages 1–10 with drawings","Assessment: Annexure V Month 2 checklist — oral, numeracy, social observation","Discussion: 'What did you learn this month that surprised you?'","Class photograph + goodbye song — prepare for Month 3!"],
materials: ["Portfolio folders","Class book binding materials","Assessment checklist","Camera"],
tip: "The Class Number Book becomes a shared resource in the reading corner. 'Turn to page 7 — who drew those 7 birds?' Personal investment in class resources drives literacy.",
deliverable: "Month 2 portfolio completed. Class Number Book bound and placed in reading corner. Assessment done." }
]
}
]
},
{
id: 3,
weeks: [
{
num: 13, wclass: "wh-m3-1", theme: "📖 Reading Readiness & Print Concepts", days: "Days 61–65",
goals: ["EC","IL"],
days_data: [
{ n: 61, theme: "My Name — Letters & Print Connection", goals: ["EC"],
keyActivity: "Letter Hunt in the Classroom + Name Writing",
steps: ["Print walk: point to all print in the room — labels, charts, posters, signs","Find YOUR name letters in the classroom — on charts, displays, books","Trace name with wet finger on blackboard — writing in 'invisible ink'","Cut-and-paste: find letters of name in old newspapers/magazines","'My name has ___ letters. One letter is ___' — metacognitive talk"],
materials: ["Old newspapers/magazines","Scissors","Glue","Name cards for reference","Blackboard"],
tip: "Environmental print is the FIRST reading children do. Logos, signs, labels — children recognise these before formal letters. Value this! It IS reading.",
deliverable: "Can identify all letters in own name. Cut-and-paste name completed. Awareness of print all around us." },
{ n: 62, theme: "Phonological Awareness — Syllables & Sounds", goals: ["EC"],
keyActivity: "Sound Segmentation & Blending Games",
steps: ["Syllable clap-along: clap every syllable in children's names and common words","Segment onset-rime: 'Take away /d/ from dog — what's left?' (og)","Blend game: '/m/... /a/... /p/' — what word? (map). Blend it!","Initial sound grouping: put all /b/ pictures together, all /m/ pictures...","Tongue twisters! Peter Piper, local language examples"],
materials: ["Picture cards sorted by initial sounds","Syllable counting game","Onset-rime cards"],
tip: "Blending and segmenting are the two most critical phonological skills for learning to read. Practice 5 minutes daily — it's the most important 5 minutes of your literacy block.",
deliverable: "Can blend 3-sound words. Can segment onset from rime. Can sort pictures by initial sound." },
{ n: 63, theme: "Rhyming Worlds & Word Families", goals: ["EC"],
keyActivity: "Word Family Houses — at/an/ap Families",
steps: ["Introduce word family: '-at' family — cat, bat, hat, mat, rat, sat, pat","Make a 'house' for the -at family — each word is a family member inside","Draw pictures for each word in the family","Add silly words: zat, gat — is it a real word? Phonics vs. meaning","Extend: -an family, -ap family — what words do we know?"],
materials: ["Word family house templates","Picture cards","Crayons"],
tip: "Word families build spelling patterns and decoding skills simultaneously. Keep it oral FIRST — say all the words before writing any. The sound pattern matters most.",
deliverable: "Can read/say all words in at least one word family (-at, -an, or -ap). Word family house completed." },
{ n: 64, theme: "Concepts of Print — How Books Work", goals: ["EC"],
keyActivity: "Big Book Interaction — Print Concepts Exploration",
steps: ["Hold a big book — demonstrate: front cover, back cover, spine, title, author","'Which way do we hold the book? Where does reading START?' (top-left)","Track text with finger while reading — model left-to-right direction","Point to: a word, a letter, a sentence, a full stop, a question mark","Let children 'read' a page using pictures even before decoding text"],
materials: ["Large picture book","Pointer stick","Print concept checklist"],
tip: "Print concepts (directionality, word boundaries, punctuation awareness) are PREREQUISITES to formal reading. Many struggles in Class 1 stem from gaps here, not intelligence.",
deliverable: "Understands front/back cover, title, author. Can track text left-to-right. Knows difference between letter and word." },
{ n: 65, theme: "Oral to Written — My Story in Pictures", goals: ["EC","IL"],
keyActivity: "Dictation Storymaking — Child Speaks, Teacher Scribes",
steps: ["Each child dictates a 2-3 sentence story while teacher writes EXACTLY what they say","Child illustrates their story — the text is displayed below each drawing","Read it back: 'You said: The elephant went to market...' — point to each word","Pin stories on 'Our Story Wall' — these are real books by real authors!","Share partner stories — read someone else's"],
materials: ["Drawing paper","Pens (for teacher scribing)","Display wall"],
tip: "Dictation-to-print is the most powerful bridge between oral language and written language. The child's own words become text — they KNOW what the text says, so they CAN 'read' it.",
deliverable: "Personal dictated story book created. Child can 'read' own story pointing to words. Story Wall displayed." }
]
},
{
num: 14, wclass: "wh-m3-2", theme: "🔢 Mathematical Thinking & Problem Solving", days: "Days 66–70",
goals: ["IL","EC"],
days_data: [
{ n: 66, theme: "Ordinal Numbers — 1st, 2nd, 3rd", goals: ["IL","EC"],
keyActivity: "Race Day — Ordinal Number Practice",
steps: ["Organise a simple race outside — 4 children race, identify: 1st, 2nd, 3rd, 4th","'Who was first? Second?' — use ribbon or sticker markers","Queue up: 'Stand in a line — who is 3rd? 5th?' — change the line, ask again","Calendar: 'What is the 5th day of the week? The 3rd month?'","Draw: a race with animals — label who came 1st, 2nd, 3rd"],
materials: ["Ribbons/stickers for placing","Drawing paper","Ordinal number cards"],
tip: "Ordinal numbers are context-dependent — 'first in LINE' vs 'first in RACE' vs 'first MONTH.' Use multiple contexts. Avoid teaching it as just a list: 1st, 2nd, 3rd...",
deliverable: "Can use ordinal language correctly in context. Race drawing with ordinal labels completed." },
{ n: 67, theme: "Patterns — AB, ABC, ABB", goals: ["IL"],
keyActivity: "Pattern Dance + Bead/Block Pattern Creation",
steps: ["Create body patterns: clap-stomp-clap-stomp (AB); clap-clap-stomp (ABB)","Bead patterns: make a necklace with a repeating pattern — at least 3 repetitions","What comes next? Flash growing patterns — predict and extend","Transfer patterns: from beads to drawing, from sound to movement","Create YOUR OWN pattern — teach it to a friend"],
materials: ["Beads","String","Pattern blocks","Drawing paper"],
tip: "Pattern extension is more important than pattern creation at this stage. Can the child see what comes NEXT? That's mathematical prediction — the heart of algebraic thinking.",
deliverable: "Created and extended 2+ types of patterns. Pattern necklace made. Can predict and justify next element." },
{ n: 68, theme: "Spatial Awareness & Directions", goals: ["IL","EC"],
keyActivity: "Obstacle Course with Directional Language",
steps: ["Set up an obstacle course: 'Go under the table, over the rope, around the tree...'","Children give instructions to a blindfolded friend — precise language needed","'Put the book ON the table, UNDER the chair, BESIDE the window'","Map making: draw a simple map of the classroom showing key objects","Directional song: 'Simon Says put your hands ABOVE your head, BEHIND your back...'"],
materials: ["Rope/chairs for obstacle course","Blindfold","Drawing paper for map","Classroom objects"],
tip: "Spatial language (above, below, beside, between, behind, in front) is essential for both mathematics AND literacy. Children who lack this struggle with following instructions.",
deliverable: "Navigated obstacle course. Can follow 3-step directional instruction. Simple classroom map drawn." },
{ n: 69, theme: "Time Concepts — Morning, Noon, Night", goals: ["IL","EC"],
keyActivity: "My Day Sequence Book — Routines & Time",
steps: ["Sequence daily events: wake up, brush, eat, school, play, sleep","Make a 6-panel 'My Day' book — draw each event in order","Language: 'I eat breakfast in the morning. I sleep at night.'","Calendar: yesterday, today, tomorrow — what happened? What will happen?","Longer time: 'How many days until the weekend? Until your birthday?'"],
materials: ["6-panel book template (folded paper)","Crayons","Calendar"],
tip: "Time is abstract. Always link to ROUTINE and FEELING — 'Morning feels like...', 'Night is when...' Make time sensory and personal before making it mathematical.",
deliverable: "My Day book completed in correct sequence. Uses morning/afternoon/evening/night correctly in sentences." },
{ n: 70, theme: "Problem Solving — Think & Try!", goals: ["IL","EC"],
keyActivity: "Activity 4: Puzzle Play + Story Problem Solving",
steps: ["Introduce 4–6 piece jigsaw puzzles — try, fail, try again (key!!)","Problem: 'How can we fit 8 children into 4 pairs?' — children solve it","Story problems with objects: 'Geeta has 5 mangoes. She gives 2 away. How many?'","Build a bridge: 5 sticks and 3 pieces of paper — bridge must hold a stone","Reflection: 'How did you solve it? Did you try another way when the first didn't work?'"],
materials: ["Jigsaw puzzles (4–6 pieces)","Building materials (sticks, paper)","Story problem cards"],
tip: "Struggle is LEARNING. Resist solving the problem for children. Wait. Prompt: 'What have you tried? What else could you try?' The productive struggle is where growth happens.",
deliverable: "Completed a 5+ piece puzzle. Solved a subtraction story problem with objects. Bridge challenge attempted." }
]
},
{
num: 15, wclass: "wh-m3-3", theme: "🔬 Science & Curiosity — Mini Scientists!", days: "Days 71–75",
goals: ["IL","HW","EC"],
days_data: [
{ n: 71, theme: "Float & Sink Deep Dive", goals: ["IL"],
keyActivity: "Predict-Observe-Explain Science Method",
steps: ["Review Week 10 float/sink with new objects — do children remember predictions?","Introduce: WHY does something float? (Air inside, density — use simple words: 'heavy for its size')","Design challenge: make a ball of clay FLOAT (flatten into a boat!)","Record observations with drawings: predict → observe → explain","Share findings in circle time — 'We discovered that...'"],
materials: ["Water tub","Clay","Varied objects","Science journal pages"],
tip: "The clay boat challenge is MAGICAL — children discover that shape affects floating, not just material. This is genuine scientific discovery. Let them figure it out through trial and error.",
deliverable: "Successfully made clay float in boat shape. Science journal entry with prediction and observation. Can explain float/sink in own words." },
{ n: 72, theme: "Shadow Play & Light Science", goals: ["IL","EC"],
keyActivity: "Shadow Puppet Theatre + Shadow Observations",
steps: ["Go outside at 2 different times — morning and afternoon — trace your shadow","Compare: 'Is your shadow the same size? Same direction?'","Back inside: shadow puppet theatre using torch — create stories with shadows","Explore: what makes a BIGGER shadow? (closer to light source) What makes it disappear?","Create shadow animals with hands — peacock, duck, rabbit, dog"],
materials: ["Chalk (for tracing shadows)","Torch/lamp","White sheet for shadow theatre","Hands (free!)"],
tip: "Shadow investigation teaches light direction, time of day, and angle — all from playing with a torch. Connect to the sun's movement — introduce without formal terms.",
deliverable: "Two shadow tracings at different times compared. Shadow puppet performance. Can explain why shadows change." },
{ n: 73, theme: "Growing Our Garden — Nurturing Life", goals: ["IL","HW"],
keyActivity: "Plant Health Check + Observation Report",
steps: ["Detailed observation of classroom plants — Week 5 seeds should be well-grown now!","Children sketch their plant: how tall? How many leaves? Colour? Shape?","Experiment: give one plant more water, one less — predict what will happen","Nature vocabulary: roots, stem, leaves, flower, seed, fruit, soil, sun","Take plants to give to another class — practice Seva Bhav (service)"],
materials: ["Classroom plants (Week 5)","Observation journal","Ruler for measuring","Drawing pencils"],
tip: "The plant they grew from a seed is THEIR plant — they have deep emotional investment in it. Use this ownership to drive scientific observation. Ask: 'How does your plant look today?'",
deliverable: "Plant observation journal updated. Can name plant parts and their functions simply. Measurement compared to Week 5." },
{ n: 74, theme: "Living & Non-Living — Sorting the World", goals: ["IL","EC"],
keyActivity: "Living vs. Non-Living Classification Hunt",
steps: ["Discuss: 'What makes something living? It grows! It breathes! It needs food!'","Sort picture cards: dog, rock, tree, chair, fish, cloud, flower, book","Walk outside: touch and identify living vs. non-living things in the school garden","Edge cases: seeds (living!), fire (not living), clouds (not living) — great discussion!","Draw: 2 living + 2 non-living things from their immediate home environment"],
materials: ["Living/non-living picture cards","Sorting boards (2 columns)","Drawing paper"],
tip: "Edge cases (seeds, virus, crystals) are the BEST teaching moments. 'Is a seed alive? It's not moving...' — genuine scientific curiosity. Celebrate the confusion!",
deliverable: "Can correctly classify 10+ objects as living/non-living. Can state 2 characteristics of living things." },
{ n: 75, theme: "Mini Science Fair — We Are Scientists!", goals: ["IL","EC","HW"],
keyActivity: "Child-Led Science Discovery Presentations",
steps: ["Each child (or pair) prepares one 'discovery' to share: float/sink, plant growth, shadow...","Set up stations around the classroom — each child stands at their station","Classmates rotate and listen — 'What did you discover? How did you find out?'","If parents can attend — invite them for 30 minutes!","Award 'Curiosity Stars' to ALL participants — everyone is a scientist"],
materials: ["Materials from previous science activities","Display boards or table space","'Curiosity Star' certificates (hand-drawn is fine)"],
tip: "The Mini Science Fair is NOT competitive. There are no winners. Every discovery, no matter how simple, gets equal celebration. 'Priya discovered that clay can float when shaped like a bowl!'",
deliverable: "Every child presented a discovery. Parents (if present) engaged meaningfully. Curiosity Star awarded to each child." }
]
},
{
num: 16, wclass: "wh-m3-4", theme: "💎 Values, Character & Responsible Citizens", days: "Days 76–80",
goals: ["HW","EC"],
days_data: [
{ n: 76, theme: "Honesty — Stories & Real Life", goals: ["HW","EC"],
keyActivity: "Story: The Honest Woodcutter + Role Play",
steps: ["Tell the story: The Honest Woodcutter (Annexure VII, Story 17) with full expression","Discussion: 'Was Ram right to be honest even when he could have taken the gold axe?'","Role play the choice moment: what would YOU do? Act both options","'Has anyone ever been in a situation where they had to choose to be honest?'","Draw: one time honesty was hard but right"],
materials: ["Story cards for 'Honest Woodcutter'","Role play props (optional)","Drawing paper"],
tip: "Values stories work best when followed by REAL application discussion. 'What would YOU do?' is more powerful than 'What should the character do?' Make it personal.",
deliverable: "Story retold in own words. Role play of honest choice performed. Can explain why honesty matters with examples." },
{ n: 77, theme: "Kindness in Action — Seva Bhav", goals: ["HW","EC"],
keyActivity: "Random Acts of Kindness Challenge",
steps: ["Discuss: 'What is kindness? Can you show me kindness without words?'","Brainstorm: 30-second kindness acts — hold the door, help pick up, say thank you","Each child performs ONE act of kindness during school today — secretly!","End of day: share — 'I was kind to ___ today by ___'","'Kindness Chain': each act of kindness described adds a link to a paper chain"],
materials: ["Paper strips for kindness chain","Pens","Optional: kindness challenge cards"],
tip: "Make kindness VISIBLE in the classroom daily. Use language: 'That was a kind thing to do — you saw that someone needed help and you helped.' Name the behaviour explicitly.",
deliverable: "Every child performed and reported a kindness act. Kindness chain grows. Discussion of kindness as habit, not event." },
{ n: 78, theme: "Responsibility & Taking Care", goals: ["HW","EC"],
keyActivity: "Activity 5: Classroom Jobs — Week-Long Responsibility",
steps: ["Review classroom jobs system — is every job being done with pride?","Deepen responsibility: what happens when the material in-charge forgets?","Story: 'The Ant and Grasshopper' — Annexure VII, Story 14 — plan vs. play","Discussion: 'What is one BIG responsibility you have at home? At school?'","'Responsibility Badge' — each child earns their badge through one full week of their job"],
materials: ["Classroom job chart","Responsibility badges","Story cards"],
tip: "Responsibility is a DAILY PRACTICE, not a lesson topic. The jobs system running every day for 90 days teaches responsibility better than any worksheet ever could.",
deliverable: "All jobs performed for full week. 'Ant and Grasshopper' story retold. Each child states their classroom responsibility." },
{ n: 79, theme: "Gratitude — Thank You Day", goals: ["HW","EC"],
keyActivity: "Thank-You Letter Day — Gratitude in Action",
steps: ["Discuss: 'What is gratitude? Who are you grateful for?'","Each child dictates or draws a 'Thank You' card to someone in school (gardener, cook, teacher)","Personally deliver the card — observe the reaction!","Evening reflection: 'What are 3 things you are thankful for today?'","Begin a 'Gratitude Jar' — add one paper note daily for remaining days"],
materials: ["Thank-you card templates","Crayons","Gratitude jar"],
tip: "Gratitude practice has documented benefits for children's wellbeing and resilience. Making it a DAILY ritual (not one lesson) is what creates its power. Start the jar — keep it going.",
deliverable: "Thank-you card created and delivered. Gratitude Jar started. Can name 3 things they are grateful for." },
{ n: 80, theme: "Values in Action — Who Am I Becoming?", goals: ["HW","EC"],
keyActivity: "My Values Reflection + Character Tree",
steps: ["List the values explored: honesty, kindness, responsibility, gratitude, courage, respect","Each child chooses their FAVOURITE value — which one feels most like them?","Create a 'Character Tree': tree trunk = me, branches = my values, leaves = actions I do","Gallery walk: read each other's trees — 'Oh! Priya chose kindness! I chose courage!'","Teacher shares their own character tree — model vulnerability and reflection"],
materials: ["Large paper for tree","Crayons","Leaf shapes (cut from paper)"],
tip: "The values conversation at this age is crucial for identity formation. A child who can articulate 'I am honest' behaves differently from one who has never thought about it. Plant the seed.",
deliverable: "Character Tree completed. Each child can state 2 values they are developing. Gallery walk participation." }
]
},
{
num: 17, wclass: "wh-m3-5", theme: "🎪 Integration, Expression & Showcase", days: "Days 81–85",
goals: ["HW","EC","IL"],
days_data: [
{ n: 81, theme: "Show & Tell — My Favourite Thing from Home", goals: ["EC","HW"],
keyActivity: "Show & Tell Presentations",
steps: ["Each child brings one special object from home (told in advance)","2-minute presentations: 'This is ___. It is special because ___. I want to show you ___'","Audience: 2 questions per presenter from classmates","Teacher models sentence: 'I am curious about ___ because ___'","Display all objects for a 'My World' mini museum — return carefully"],
materials: ["Objects from home (brought by children)","Display table","Question-starter cards"],
tip: "Show & Tell connects home to school — the most powerful learning bridge. It validates what children already know and love. Every object has a story worth hearing.",
deliverable: "Every child presented. 100+ oral sentences produced. Listening, questioning, and responding skills demonstrated." },
{ n: 82, theme: "Drama & Role Play — Big Performances", goals: ["EC","HW"],
keyActivity: "Short Play — Story-Based Group Drama",
steps: ["Groups of 5 prepare a 5-minute skit based on stories from Annexure VII","Assign roles: actors, narrator, prop team, audience manager","Two rehearsals — focus on EXPRESSION and VOLUME, not perfection","Performance day: each group performs, takes a bow, gets applause","Debrief: 'What was the hardest part? What made you proud?'"],
materials: ["Story scripts (simple summary)","Props from classroom","Practice space"],
tip: "Drama is simultaneously literacy, social skills, empathy, and confidence building. The 'rehearsal' mindset — try, improve, try again — is one of the most valuable life skills.",
deliverable: "Every child participated in group drama. Performance completed. Oral language: expression, volume, clarity observed." },
{ n: 83, theme: "Art Exhibition Preparation", goals: ["HW","EC","IL"],
keyActivity: "Curation Day — Selecting & Displaying Best Work",
steps: ["Children review full 90-day portfolio and select 3 BEST pieces for exhibition","Write (or dictate) a caption for each piece: 'I made this when ___ and I learned ___'","Arrange the exhibition space — children decide display layout","Make exhibition title signs, name labels, direction arrows","Invite other classes to tour the exhibition tomorrow!"],
materials: ["Full portfolios","Display boards/walls","Adhesive putty","Caption cards","Pens"],
tip: "Curating their own work teaches children to EVALUATE quality — a critical thinking skill. Ask: 'Why is THIS your best piece? What makes it better than the others?'",
deliverable: "Exhibition space prepared. Every child's work displayed with caption. Children can explain their choices." },
{ n: 84, theme: "Outdoor Learning — Full Day Nature Classroom", goals: ["IL","HW","EC"],
keyActivity: "Nature School Day — All Activities Outdoors",
steps: ["Morning circle outside: prayer, weather, calendar — all on grass","Free play: create a city with sticks, stones, leaves — cooperative building","Language: tell a story inspired by nature — what does the wind say?","Numeracy: count trees, count leaves on a branch, measure shadow lengths","Goodbye circle: under the sky — 'What did you notice today that you never noticed before?'"],
materials: ["Nature materials (leaves, sticks, stones)","Chalk","Science journals","Camera"],
tip: "The outdoor classroom is not a field trip — it IS the classroom. The natural world is the richest, most differentiated learning environment that exists. Use it regularly.",
deliverable: "Full day of outdoor learning documented. One nature discovery per child recorded. Cooperative building completed." },
{ n: 85, theme: "Music, Dance & Movement Showcase", goals: ["HW","EC"],
keyActivity: "Class Concert — Songs, Dances & Rhymes Performance",
steps: ["Prepare: 3 songs/rhymes learned during the 90 days — practice 2x each","Add movement and choreography — children suggest the actions","One group does a rhythmic clapping composition — 'our own music'","Performance: invite another class or parents for 20 minutes","End: 'We made this! We are creative!' — class cheer"],
materials: ["Songs and rhymes from the 90 days","Space for movement","Musical instruments (daphali, bells, improvised)"],
tip: "Music is language — it develops phonological awareness, vocabulary, memory, and mathematical thinking (rhythm). A child who sings regularly learns to read more easily.",
deliverable: "3 songs performed confidently. Rhythmic composition created. Every child participated in some element of performance." }
]
},
{
num: 18, wclass: "wh-m3-6", theme: "🎓 Graduation — We Are Ready for Grade I!", days: "Days 86–90",
goals: ["HW","EC","IL"],
days_data: [
{ n: 86, theme: "Portfolio Review Day — My Journey", goals: ["HW","EC","IL"],
keyActivity: "90-Day Journey Reflection — First & Last Comparison",
steps: ["Compare Day 1 drawings with Day 86 drawings — same prompt: 'Draw yourself'","Children describe what has changed: 'I am better at ___. I now know ___.'","Write (dictate) a letter to next year's Grade 1 children: 'Dear new student...'","Make a 'Growth Timeline' — 5 milestones drawn from the 90 days","Teacher shares specific growth for each child — read aloud to them individually"],
materials: ["First drawings (from Day 1)","Drawing paper","Growth timeline template","Pens"],
tip: "The Day 1 vs Day 86 self-portrait comparison is always MOVING — for children, parents, and teachers. It makes invisible growth visible. Take the time to do this properly.",
deliverable: "Growth timeline completed. Letter to future students written. Self-portrait compared. Growth conversation had with each child." },
{ n: 87, theme: "Parent Sharing Day", goals: ["HW","EC","IL"],
keyActivity: "Portfolio Parent Meeting — Child-Led Conferences",
steps: ["Parents invited for 30-minute sessions — child PRESENTS their portfolio to parent","Child shows: 'This is my favourite piece. I made it when we were learning about ___'","Teacher shares one specific growth observation per child to parent privately","Parents write/draw a message of love and pride for their child","Group: parents + children + teacher make a collective thank-you mural"],
materials: ["Portfolios","Parent message cards","Mural paper","Markers"],
tip: "Child-led portfolio conferences are transformational — the child is the EXPERT on their learning. Parents who see their child proudly presenting work become the school's greatest advocates.",
deliverable: "Parent meeting completed. Parent messages in portfolio. Collective mural made. School-parent relationship strengthened." },
{ n: 88, theme: "My Learning Journal — In My Own Words", goals: ["EC","IL"],
keyActivity: "Creating 'The Book of Me' — A Personal Literacy Artifact",
steps: ["Each child creates a final personal book: cover page, favourite memory, best activity, one thing I want to learn in Grade 1, a message to my teacher","Teacher helps with scribing where needed — child owns every word","Illustrate each page with care — this is their graduation keepsake","Read it to a friend — peer sharing","Place in portfolio to take home on Graduation Day"],
materials: ["Book making paper (6 pages)","Crayons","Covers (slightly stiffer paper)","Stapler or ribbon binding"],
tip: "This personal book is the most authentic literacy assessment you can do. Does the child have things to say? Can they communicate them? Do they understand that marks carry meaning? Yes!",
deliverable: "'Book of Me' completed. Child can read it aloud. Oral narrative coherence observed. Portfolio ready for home." },
{ n: 89, theme: "Play-Based Assessment Day", goals: ["HW","EC","IL"],
keyActivity: "Activity Stations — Final Assessment Through Play",
steps: ["Set up 5 stations: counting (IL), oral story (EC), letter of name (EC), balance/sort (IL), body safety (HW)","Children rotate freely — teacher observes and notes using Annexure V checklist","No formal test, no sitting still — children PLAY and teacher ASSESSES","Optional: short parent observation visit — 'Watch your child play and learn'","Celebration tea: healthy snacks + class music in background"],
materials: ["Station materials (from all previous activities)","Assessment checklist (Annexure V)","Healthy snack items"],
tip: "Play-based assessment is the MOST valid assessment at this age. A child who plays confidently at all stations has demonstrated readiness more convincingly than any test paper.",
deliverable: "Annexure V assessment completed for all children. Post-module data recorded. Every child assessed without stress." },
{ n: 90, theme: "🎓 VIDYA PRAVESH GRADUATION DAY!", goals: ["HW","EC","IL"],
keyActivity: "🎊 Graduation Ceremony + Certificate Distribution",
steps: ["🌟 MORNING: Decorate the classroom together — balloons, flags, flowers","🎤 PROGRAMME: Prayer → Welcome song → Short skit by children → Portfolio display → Individual recognition","🎓 CERTIFICATES: Teacher reads one personal strength for each child as they receive their certificate: 'This child showed courage / curiosity / kindness...'","👨👩👧 FAMILY TIME: Parents take photographs, children show portfolio, families share in the joy","🎊 FINALE: Class sings the goodbye song one last time — then ONE big cheer: 'We are READY for Grade 1!'"],
materials: ["Graduation certificates (hand-designed is beautiful)","Balloons & decorations","Camera","Healthy celebration snack","All portfolios ready to take home"],
tip: "This day is about CELEBRATION, not performance. Every child has grown. Every child has succeeded. Your job today is to make each child and family feel profoundly proud and excited for what comes next. You have changed their lives. Celebrate that!",
deliverable: "GRADUATION! Every child receives a certificate with their personal strength named. Portfolio taken home. Every family feels welcomed and proud. The joy of learning is fully alive. 🌟" }
]
}
]
}
];
// ════════════════════════════════════════════════════════════
// RENDER ENGINE
// ════════════════════════════════════════════════════════════
function renderGoalTags(goals) {
return goals.map(g => `<span class="goal-tag tag-${g.toLowerCase()}">${g}</span>`).join('');
}
function renderDayCard(day, monthClass) {
const isGrad = day.n === 90;
const gradStyle = isGrad ? 'background: linear-gradient(135deg, #1a1a2e, #533483); color: #fff;' : '';
const gradTextStyle = isGrad ? 'color: #FFE66D;' : '';
const gradMuted = isGrad ? 'color: rgba(255,255,255,0.6);' : '';
return `
<div class="day-card" ${isGrad ? 'style="'+gradStyle+'"' : ''}>
<div class="flow-bar">
<div class="flow-seg fs1"></div><div class="flow-seg fs2"></div>
<div class="flow-seg fs3"></div><div class="flow-seg fs4"></div>
<div class="flow-seg fs5"></div><div class="flow-seg fs6"></div>
<div class="flow-seg fs7"></div><div class="flow-seg fs8"></div>
</div>
<div class="day-card-top">
<div class="day-num" style="${gradMuted}">DAY ${day.n}</div>
<div class="day-theme" style="${gradTextStyle}">${day.theme}</div>
<div class="goal-tags">${renderGoalTags(day.goals)}</div>
</div>
<div class="day-body">
<div class="activity-block main">
<div class="activity-label">⭐ KEY ACTIVITY</div>
<div class="activity-name">${day.keyActivity}</div>
<ul class="steps-list">
${day.steps.map(s => `<li>${s}</li>`).join('')}
</ul>
</div>
<div class="activity-block">
<div class="activity-label">📦 MATERIALS</div>
<div class="materials-row">
${day.materials.map(m => `<span class="mat-tag">${m}</span>`).join('')}
</div>
</div>
<div class="teacher-tip">
<div class="tip-label">👩🏫 Teacher Tip</div>
<div class="tip-text">${day.tip}</div>
</div>
<div class="deliverable">
<div class="del-label">✅ Deliverable / Assessment</div>
<div class="del-text">${day.deliverable}</div>
</div>
</div>
</div>`;
}
function renderWeek(week, monthIdx) {
const monthClass = `m${monthIdx+1}`;
const weekId = `week-m${monthIdx+1}-${week.num}`;
return `
<div class="week-section">
<div class="week-header ${week.wclass}" id="hdr-${weekId}" onclick="toggleWeek('${weekId}')">
<div class="week-num">W${week.num}</div>
<div class="week-info">
<div class="week-theme">${week.theme}</div>
<div class="week-days-range">${week.days}</div>
</div>
<div class="week-goals">${week.goals.map(g=>`<span class="wg">${g}</span>`).join('')}</div>
<div class="week-toggle">▼</div>
</div>
<div class="days-grid" id="${weekId}">
${week.days_data.map(d => renderDayCard(d, monthClass)).join('')}
</div>
</div>`;
}
// Render all months
months.forEach((month, i) => {
const container = document.getElementById(`weeks-m${month.id}`);
if (container) {
container.innerHTML = month.weeks.map(w => renderWeek(w, i)).join('');
}
});
// Open Week 1 by default
setTimeout(() => {
const firstGrid = document.getElementById('week-m1-1');
if (firstGrid) {
firstGrid.classList.add('open');
const hdr = document.getElementById('hdr-week-m1-1');
if (hdr) hdr.classList.add('open');
}
}, 100);
// ════════════════════════════════════════════════════════════
// INTERACTIONS
// ════════════════════════════════════════════════════════════
function showMonth(n) {
document.querySelectorAll('.month-section').forEach(s => s.classList.remove('active'));
document.querySelectorAll('.month-tab').forEach(t => t.classList.remove('active'));
document.getElementById(`month${n}`).classList.add('active');
document.querySelectorAll('.month-tab')[n-1].classList.add('active');
window.scrollTo({top: 0, behavior: 'smooth'});
}
function toggleWeek(id) {
const grid = document.getElementById(id);
const hdr = document.getElementById('hdr-' + id);
if (grid) {
grid.classList.toggle('open');
if (hdr) hdr.classList.toggle('open');
}
}
</script>
</body>
</html>