lms / index.html
SaranRaj-12's picture
Add 2 files
63b3add verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Government High School, Suthukeny | Directorate of School Education, Puducherry</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero-bg {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
background-size: cover;
background-position: center;
}
.school-bg {
background-color: #1a365d;
}
.sidebar-item.active {
background-color: rgba(26, 54, 93, 0.2);
border-left: 4px solid #1a365d;
}
.sidebar-item:hover:not(.active) {
background-color: rgba(26, 54, 93, 0.1);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.login-box {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.timetable-cell {
transition: all 0.3s ease;
}
.timetable-cell:hover {
background-color: #ebf8ff;
transform: scale(1.03);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Top Navigation -->
<nav class="school-bg text-white">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center py-3">
<div class="flex items-center space-x-4">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Emblem_of_Puducherry.png/1200px-Emblem_of_Puducherry.png" alt="Puducherry Emblem" class="h-12">
<div>
<div class="font-bold text-lg">GOVERNMENT HIGH SCHOOL</div>
<div class="text-sm">Suthukeny, Puducherry</div>
</div>
</div>
<div class="hidden md:flex items-center space-x-6">
<a href="#" class="hover:text-blue-200 transition">Home</a>
<a href="#about" class="hover:text-blue-200 transition">About</a>
<a href="#academics" class="hover:text-blue-200 transition">Academics</a>
<a href="#students" class="hover:text-blue-200 transition">Students</a>
<a href="#gallery" class="hover:text-blue-200 transition">Gallery</a>
<a href="#contact" class="hover:text-blue-200 transition">Contact</a>
<button onclick="document.getElementById('login-modal').classList.remove('hidden')" class="bg-white text-blue-800 px-4 py-1 rounded-md font-medium hover:bg-opacity-90 transition">
<i class="fas fa-sign-in-alt mr-1"></i> Login
</button>
</div>
<button id="mobile-menu-btn" class="md:hidden text-xl">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="container mx-auto px-4 py-2">
<a href="#" class="block py-2 text-gray-700 hover:bg-gray-100">Home</a>
<a href="#about" class="block py-2 text-gray-700 hover:bg-gray-100">About</a>
<a href="#academics" class="block py-2 text-gray-700 hover:bg-gray-100">Academics</a>
<a href="#students" class="block py-2 text-gray-700 hover:bg-gray-100">Students</a>
<a href="#gallery" class="block py-2 text-gray-700 hover:bg-gray-100">Gallery</a>
<a href="#contact" class="block py-2 text-gray-700 hover:bg-gray-100">Contact</a>
<button onclick="document.getElementById('login-modal').classList.remove('hidden')" class="w-full text-left py-2 text-gray-700 hover:bg-gray-100">
<i class="fas fa-sign-in-alt mr-2"></i> Login
</button>
</div>
</div>
<!-- Hero Section -->
<div class="hero-bg text-white py-20">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Government High School</h1>
<h2 class="text-2xl md:text-3xl mb-6">Suthukeny, Puducherry</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Empowering students with quality education under the Directorate of School Education, Puducherry</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#academics" class="bg-white text-blue-800 px-6 py-3 rounded-md font-medium hover:bg-opacity-90 transition">
<i class="fas fa-book-open mr-2"></i> Academic Programs
</a>
<a href="#admissions" class="border-2 border-white text-white px-6 py-3 rounded-md font-medium hover:bg-white hover:bg-opacity-10 transition">
<i class="fas fa-user-graduate mr-2"></i> Admission Info
</a>
</div>
</div>
</div>
<!-- Login Modal -->
<div id="login-modal" class="hidden fixed inset-0 bg-gray-600 bg-opacity-50 flex items-center justify-center z-50">
<div class="bg-white rounded-lg login-box w-full max-w-md mx-4">
<div class="flex justify-between items-center border-b px-6 py-4">
<h3 class="text-xl font-bold text-gray-800">School Portal Login</h3>
<button onclick="document.getElementById('login-modal').classList.add('hidden')" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<div class="p-6">
<div class="mb-6">
<div class="flex border-b">
<button id="student-tab" class="px-4 py-2 font-medium border-b-2 border-blue-600 text-blue-600">Student</button>
<button id="teacher-tab" class="px-4 py-2 font-medium text-gray-500">Teacher</button>
<button id="parent-tab" class="px-4 py-2 font-medium text-gray-500">Parent</button>
</div>
</div>
<!-- Student Login -->
<div id="student-login">
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="student-username">Student ID</label>
<input type="text" id="student-username" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="student-password">Password</label>
<input type="password" id="student-password" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div class="mb-4">
<button class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition">
<i class="fas fa-sign-in-alt mr-2"></i> Login
</button>
</div>
<div class="text-center text-sm text-gray-600">
<a href="#" class="text-blue-600 hover:underline">Forgot password?</a>
</div>
</div>
<!-- Teacher Login (hidden by default) -->
<div id="teacher-login" class="hidden">
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="teacher-username">Teacher ID</label>
<input type="text" id="teacher-username" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="teacher-password">Password</label>
<input type="password" id="teacher-password" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div class="mb-4">
<button class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition">
<i class="fas fa-sign-in-alt mr-2"></i> Login
</button>
</div>
</div>
<!-- Parent Login (hidden by default) -->
<div id="parent-login" class="hidden">
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="parent-username">Parent ID</label>
<input type="text" id="parent-username" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="parent-password">Password</label>
<input type="password" id="parent-password" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div class="mb-4">
<button class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition">
<i class="fas fa-sign-in-alt mr-2"></i> Login
</button>
</div>
<div class="text-center text-sm text-gray-600">
<a href="#" class="text-blue-600 hover:underline">Don't have an account? Register</a>
</div>
</div>
</div>
</div>
</div>
<!-- About Section -->
<section id="about" class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8">About Our School</h2>
<div class="flex flex-col lg:flex-row gap-8">
<div class="lg:w-1/2">
<img src="https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="School Building" class="w-full rounded-lg shadow-md">
</div>
<div class="lg:w-1/2">
<h3 class="text-2xl font-semibold mb-4">Welcome to Government High School, Suthukeny</h3>
<p class="text-gray-700 mb-4">Established in 1975, our school has been providing quality education to the children of Suthukeny and surrounding areas under the guidance of the Directorate of School Education, Puducherry.</p>
<p class="text-gray-700 mb-4">We are committed to nurturing young minds through a balanced curriculum that emphasizes academic excellence, character development, and extracurricular activities.</p>
<div class="bg-blue-50 p-4 rounded-lg mb-4">
<h4 class="font-bold text-blue-800 mb-2">Our Vision</h4>
<p>"To create a learning environment that empowers students to become responsible citizens and lifelong learners."</p>
</div>
<div class="grid grid-cols-2 gap-4">
<div class="bg-gray-50 p-3 rounded-lg">
<div class="text-3xl font-bold text-blue-600 mb-1">650+</div>
<div class="text-gray-600">Students</div>
</div>
<div class="bg-gray-50 p-3 rounded-lg">
<div class="text-3xl font-bold text-blue-600 mb-1">25+</div>
<div class="text-gray-600">Teachers</div>
</div>
<div class="bg-gray-50 p-3 rounded-lg">
<div class="text-3xl font-bold text-blue-600 mb-1">12</div>
<div class="text-gray-600">Classrooms</div>
</div>
<div class="bg-gray-50 p-3 rounded-lg">
<div class="text-3xl font-bold text-blue-600 mb-1">5</div>
<div class="text-gray-600">Computer Labs</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Academics Section -->
<section id="academics" class="py-12 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8">Academics</h2>
<!-- Academic Calendar -->
<div class="bg-white rounded-xl shadow-sm p-6 mb-8">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold">Academic Calendar 2023-24</h3>
<a href="#" class="text-blue-600 hover:underline">Download PDF</a>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Month</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Events</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Holidays</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">June 2023</td>
<td class="px-6 py-4">School Reopens, Orientation Day</td>
<td class="px-6 py-4">-</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">July 2023</td>
<td class="px-6 py-4">Sports Day, Parent-Teacher Meeting</td>
<td class="px-6 py-4">14 July (Bastille Day)</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">August 2023</td>
<td class="px-6 py-4">Independence Day Celebration, Unit Test I</td>
<td class="px-6 py-4">15 August (Independence Day)</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">September 2023</td>
<td class="px-6 py-4">Teachers' Day, Mid-Term Exams</td>
<td class="px-6 py-4">-</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">October 2023</td>
<td class="px-6 py-4">Gandhi Jayanthi, Science Exhibition</td>
<td class="px-6 py-4">2 October (Gandhi Jayanthi)</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Teachers and Timetable -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8">
<!-- Teachers List -->
<div class="bg-white rounded-xl shadow-sm p-6 lg:col-span-1">
<h3 class="text-xl font-bold mb-6">Our Teaching Staff</h3>
<div class="space-y-4">
<div class="flex items-start">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Teacher" class="h-12 w-12 rounded-full mr-3">
<div>
<h4 class="font-medium">Mrs. Lakshmi Devi</h4>
<p class="text-sm text-gray-600">Headmistress, Mathematics</p>
</div>
</div>
<div class="flex items-start">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Teacher" class="h-12 w-12 rounded-full mr-3">
<div>
<h4 class="font-medium">Mr. Rajendran</h4>
<p class="text-sm text-gray-600">Science (Physics & Chemistry)</p>
</div>
</div>
<div class="flex items-start">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Teacher" class="h-12 w-12 rounded-full mr-3">
<div>
<h4 class="font-medium">Mrs. Geetha Rani</h4>
<p class="text-sm text-gray-600">Tamil</p>
</div>
</div>
<div class="flex items-start">
<img src="https://randomuser.me/api/portraits/men/22.jpg" alt="Teacher" class="h-12 w-12 rounded-full mr-3">
<div>
<h4 class="font-medium">Mr. Suresh Kumar</h4>
<p class="text-sm text-gray-600">English</p>
</div>
</div>
<div class="text-center">
<a href="#" class="text-blue-600 text-sm hover:underline">View All Teachers</a>
</div>
</div>
</div>
<!-- Timetable -->
<div class="bg-white rounded-xl shadow-sm p-6 lg:col-span-2">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold">Class Timetable (Std IX-A)</h3>
<select class="border border-gray-300 rounded-md px-3 py-1 text-sm">
<option>IX-A</option>
<option>IX-B</option>
<option>VIII-A</option>
<option>VIII-B</option>
</select>
</div>
<div class="overflow-x-auto">
<table class="min-w-full">
<thead>
<tr class="bg-gray-50">
<th class="px-4 py-2 text-left text-sm font-medium text-gray-500">Time/Day</th>
<th class="px-4 py-2 text-center text-sm font-medium text-gray-500">Mon</th>
<th class="px-4 py-2 text-center text-sm font-medium text-gray-500">Tue</th>
<th class="px-4 py-2 text-center text-sm font-medium text-gray-500">Wed</th>
<th class="px-4 py-2 text-center text-sm font-medium text-gray-500">Thu</th>
<th class="px-4 py-2 text-center text-sm font-medium text-gray-500">Fri</th>
<th class="px-4 py-2 text-center text-sm font-medium text-gray-500">Sat</th>
</tr>
</thead>
<tbody>
<tr>
<td class="px-4 py-2 text-sm font-medium">8:30 - 9:15</td>
<td class="px-4 py-2 text-center timetable-cell bg-blue-50">Maths</td>
<td class="px-4 py-2 text-center timetable-cell">English</td>
<td class="px-4 py-2 text-center timetable-cell bg-blue-50">Maths</td>
<td class="px-4 py-2 text-center timetable-cell">Science</td>
<td class="px-4 py-2 text-center timetable-cell bg-blue-50">Maths</td>
<td class="px-4 py-2 text-center timetable-cell">PT</td>
</tr>
<tr>
<td class="px-4 py-2 text-sm font-medium">9:15 - 10:00</td>
<td class="px-4 py-2 text-center timetable-cell">Science</td>
<td class="px-4 py-2 text-center timetable-cell bg-blue-50">Maths</td>
<td class="px-4 py-2 text-center timetable-cell">Tamil</td>
<td class="px-4 py-2 text-center timetable-cell bg-blue-50">Maths</td>
<td class="px-4 py-2 text-center timetable-cell">English</td>
<td class="px-4 py-2 text-center timetable-cell">PT</td>
</tr>
<tr>
<td class="px-4 py-2 text-sm font-medium">10:00 - 10:15</td>
<td colspan="7" class="px-4 py-2 text-center text-sm bg-yellow-50">BREAK</td>
</tr>
<tr>
<td class="px-4 py-2 text-sm font-medium">10:15 - 11:00</td>
<td class="px-4 py-2 text-center timetable-cell">Tamil</td>
<td class="px-4 py-2 text-center timetable-cell">Science</td>
<td class="px-4 py-2 text-center timetable-cell">English</td>
<td class="px-4 py-2 text-center timetable-cell">Social</td>
<td class="px-4 py-2 text-center timetable-cell">Tamil</td>
<td class="px-4 py-2 text-center timetable-cell">Library</td>
</tr>
<tr>
<td class="px-4 py-2 text-sm font-medium">11:00 - 11:45</td>
<td class="px-4 py-2 text-center timetable-cell">English</td>
<td class="px-4 py-2 text-center timetable-cell">Social</td>
<td class="px-4 py-2 text-center timetable-cell">Science</td>
<td class="px-4 py-2 text-center timetable-cell">Tamil</td>
<td class="px-4 py-2 text-center timetable-cell">Social</td>
<td class="px-4 py-2 text-center timetable-cell">Library</td>
</tr>
<tr>
<td class="px-4 py-2 text-sm font-medium">11:45 - 12:30</td>
<td class="px-4 py-2 text-center timetable-cell">Social</td>
<td class="px-4 py-2 text-center timetable-cell">Tamil</td>
<td class="px-4 py-2 text-center timetable-cell">Social</td>
<td class="px-4 py-2 text-center timetable-cell">English</td>
<td class="px-4 py-2 text-center timetable-cell">Science</td>
<td class="px-4 py-2 text-center timetable-cell">Club</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Previous Year Papers -->
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold">Previous Year Question Papers</h3>
<select class="border border-gray-300 rounded-md px-3 py-1 text-sm">
<option>All Classes</option>
<option>Class 6</option>
<option>Class 7</option>
<option>Class 8</option>
<option>Class 9</option>
<option>Class 10</option>
</select>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="border border-gray-200 rounded-lg p-4 card-hover transition">
<div class="flex justify-between items-start mb-3">
<div class="bg-blue-100 p-2 rounded-md">
<i class="fas fa-file-alt text-blue-600"></i>
</div>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Class 10</span>
</div>
<h4 class="font-medium mb-1">Mathematics - 2023</h4>
<p class="text-sm text-gray-600 mb-3">Annual Examination Question Paper</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">PDF • 2.4 MB</span>
<a href="#" class="text-blue-600 text-sm hover:underline">Download</a>
</div>
</div>
<div class="border border-gray-200 rounded-lg p-4 card-hover transition">
<div class="flex justify-between items-start mb-3">
<div class="bg-blue-100 p-2 rounded-md">
<i class="fas fa-file-alt text-blue-600"></i>
</div>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Class 10</span>
</div>
<h4 class="font-medium mb-1">Science - 2023</h4>
<p class="text-sm text-gray-600 mb-3">Annual Examination Question Paper</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">PDF • 1.8 MB</span>
<a href="#" class="text-blue-600 text-sm hover:underline">Download</a>
</div>
</div>
<div class="border border-gray-200 rounded-lg p-4 card-hover transition">
<div class="flex justify-between items-start mb-3">
<div class="bg-blue-100 p-2 rounded-md">
<i class="fas fa-file-alt text-blue-600"></i>
</div>
<span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">Class 9</span>
</div>
<h4 class="font-medium mb-1">Social Science - 2023</h4>
<p class="text-sm text-gray-600 mb-3">Half-Yearly Examination</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">PDF • 2.1 MB</span>
<a href="#" class="text-blue-600 text-sm hover:underline">Download</a>
</div>
</div>
</div>
<div class="text-center mt-6">
<a href="#" class="text-blue-600 hover:underline">View All Question Papers</a>
</div>
</div>
</div>
</section>
<!-- Students Section -->
<section id="students" class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8">For Students & Parents</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-8">
<!-- Student Login Card -->
<div class="bg-blue-50 rounded-xl p-6 border border-blue-100 card-hover transition">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-user-graduate text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold">Student Portal</h3>
</div>
<p class="text-gray-700 mb-4">Access your academic records, timetable, assignments, and learning resources through our secure student portal.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>View your progress reports</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Download study materials</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-blue-600 mr-2"></i>
<span>Submit assignments online</span>
</li>
</ul>
<button onclick="document.getElementById('login-modal').classList.remove('hidden')" class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition">
<i class="fas fa-sign-in-alt mr-2"></i> Student Login
</button>
</div>
<!-- Parent Login Card -->
<div class="bg-green-50 rounded-xl p-6 border border-green-100 card-hover transition">
<div class="flex items-center mb-4">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-users text-green-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold">Parent Portal</h3>
</div>
<p class="text-gray-700 mb-4">Monitor your child's academic progress, attendance, and school activities through our parent portal.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check text-green-600 mr-2"></i>
<span>View progress reports</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-600 mr-2"></i>
<span>Check attendance records</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-600 mr-2"></i>
<span>Communicate with teachers</span>
</li>
</ul>
<button onclick="document.getElementById('login-modal').classList.remove('hidden'); switchToParentLogin()" class="w-full bg-green-600 text-white py-2 rounded-md hover:bg-green-700 transition">
<i class="fas fa-sign-in-alt mr-2"></i> Parent Login
</button>
</div>
</div>
<!-- Student Projects -->
<div class="bg-white rounded-xl shadow-sm p-6 mb-8">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold">Featured Student Projects</h3>
<a href="#" class="text-blue-600 hover:underline">View All Projects</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="border border-gray-200 rounded-lg overflow-hidden card-hover transition">
<img src="https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Science Project" class="w-full h-40 object-cover">
<div class="p-4">
<h4 class="font-medium mb-1">Solar Powered Irrigation</h4>
<p class="text-sm text-gray-600 mb-2">By: R. Karthik (Class 10)</p>
<p class="text-sm text-gray-700 mb-3">An innovative solution for farmers using solar energy to power water pumps.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">Science Exhibition 2023</span>
<a href="#" class="text-blue-600 text-sm hover:underline">View Details</a>
</div>
</div>
</div>
<div class="border border-gray-200 rounded-lg overflow-hidden card-hover transition">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Math Project" class="w-full h-40 object-cover">
<div class="p-4">
<h4 class="font-medium mb-1">Math in Architecture</h4>
<p class="text-sm text-gray-600 mb-2">By: S. Priya (Class 9)</p>
<p class="text-sm text-gray-700 mb-3">Exploring geometric patterns in traditional Puducherry architecture.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">Math Fair 2023</span>
<a href="#" class="text-blue-600 text-sm hover:underline">View Details</a>
</div>
</div>
</div>
<div class="border border-gray-200 rounded-lg overflow-hidden card-hover transition">
<img src="https://images.unsplash.com/photo-1467232004584-a241de8b1d3d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80" alt="Social Project" class="w-full h-40 object-cover">
<div class="p-4">
<h4 class="font-medium mb-1">Puducherry Heritage Trail</h4>
<p class="text-sm text-gray-600 mb-2">By: M. Arjun (Class 8)</p>
<p class="text-sm text-gray-700 mb-3">Interactive map showcasing historical landmarks of Puducherry.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">Social Science Expo 2023</span>
<a href="#" class="text-blue-600 text-sm hover:underline">View Details</a>
</div>
</div>
</div>
</div>
</div>
<!-- Student Progress Report Sample -->
<div class="bg-gray-50 rounded-xl shadow-sm p-6">
<h3 class="text-xl font-bold mb-6">Student Progress Report (Sample)</h3>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-100">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Subject</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Term 1</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Term 2</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Final Grade</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Teacher Remarks</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">Tamil</td>
<td class="px-6 py-4 whitespace-nowrap">A</td>
<td class="px-6 py-4 whitespace-nowrap">A+</td>
<td class="px-6 py-4 whitespace-nowrap">A+</td>
<td class="px-6 py-4">Excellent language skills. Participates well in class.</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">English</td>
<td class="px-6 py-4 whitespace-nowrap">B+</td>
<td class="px-6 py-4 whitespace-nowrap">A</td>
<td class="px-6 py-4 whitespace-nowrap">A</td>
<td class="px-6 py-4">Good improvement shown. Needs to work on writing skills.</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">Mathematics</td>
<td class="px-6 py-4 whitespace-nowrap">A</td>
<td class="px-6 py-4 whitespace-nowrap">A</td>
<td class="px-6 py-4 whitespace-nowrap">A</td>
<td class="px-6 py-4">Strong analytical skills. Consistent performer.</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">Science</td>
<td class="px-6 py-4 whitespace-nowrap">A-</td>
<td class="px-6 py-4 whitespace-nowrap">A</td>
<td class="px-6 py-4 whitespace-nowrap">A</td>
<td class="px-6 py-4">Excellent in practical work. Theoretical knowledge improving.</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap font-medium">Social Science</td>
<td class="px-6 py-4 whitespace-nowrap">B+</td>
<td class="px-6 py-4 whitespace-nowrap">B+</td>
<td class="px-6 py-4 whitespace-nowrap">B+</td>
<td class="px-6 py-4">Good effort. Needs to focus more on history concepts.</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-4 text-sm text-gray-600">
<p>* Parents can access detailed progress reports through the Parent Portal after login.</p>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="py-12 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8">School Gallery</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
<div class="rounded-lg overflow-hidden shadow-md card-hover transition">
<img src="https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="School Event" class="w-full h-48 object-cover">
<div class="p-3">
<p class="text-sm font-medium">Annual Sports Day 2023</p>
</div>
</div>
<div class="rounded-lg overflow-hidden shadow-md card-hover transition">
<img src="https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="School Building" class="w-full h-48 object-cover">
<div class="p-3">
<p class="text-sm font-medium">Our School Campus</p>
</div>
</div>
<div class="rounded-lg overflow-hidden shadow-md card-hover transition">
<img src="https://images.unsplash.com/photo-1546410531-bb4caa6e424d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Classroom" class="w-full h-48 object-cover">
<div class="p-3">
<p class="text-sm font-medium">Smart Classroom Session</p>
</div>
</div>
<div class="rounded-lg overflow-hidden shadow-md card-hover transition">
<img src="https://images.unsplash.com/photo-1467232004584-a241de8b1d3d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80" alt="Science Exhibition" class="w-full h-48 object-cover">
<div class="p-3">
<p class="text-sm font-medium">Science Exhibition 2023</p>
</div>
</div>
<div class="rounded-lg overflow-hidden shadow-md card-hover transition">
<img src="https://images.unsplash.com/photo-1541178735493-479c1a27ed24?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80" alt="Independence Day" class="w-full h-48 object-cover">
<div class="p-3">
<p class="text-sm font-medium">Independence Day Celebration</p>
</div>
</div>
<div class="rounded-lg overflow-hidden shadow-md card-hover transition">
<img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80" alt="Group Photo" class="w-full h-48 object-cover">
<div class="p-3">
<p class="text-sm font-medium">School Annual Day 2023</p>
</div>
</div>
<div class="rounded-lg overflow-hidden shadow-md card-hover transition">
<img src="https://images.unsplash.com/photo-1546521343-4eb2c01aa44b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1235&q=80" alt="Library" class="w-full h-48 object-cover">
<div class="p-3">
<p class="text-sm font-medium">School Library</p>
</div>
</div>
<div class="rounded-lg overflow-hidden shadow-md card-hover transition">
<img src="https://images.unsplash.com/photo-1568667256549-094345857637?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1137&q=80" alt="Computer Lab" class="w-full h-48 object-cover">
<div class="p-3">
<p class="text-sm font-medium">Computer Lab</p>
</div>
</div>
</div>
<div class="text-center mt-8">
<a href="#" class="inline-block bg-blue-600 text-white px-6 py-2 rounded-md hover:bg-blue-700 transition">
<i class="fas fa-images mr-2"></i> View Full Gallery
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8">Contact Us</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">Get in Touch</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Address</h4>
<p class="text-gray-600">Government High School, Suthukeny,<br>Puducherry - 605 110</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Phone</h4>
<p class="text-gray-600">+91 413 2654321<br>+91 413 2654322 (Office)</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<p class="text-gray-600">[email protected]<br>[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-clock text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Office Hours</h4>
<p class="text-gray-600">Monday to Friday: 8:30 AM - 4:00 PM<br>Saturday: 8:30 AM - 12:30 PM</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold mb-3">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="h-10 w-10 rounded-full bg-blue-600 text-white flex items-center justify-center hover:bg-blue-700 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-blue-400 text-white flex items-center justify-center hover:bg-blue-500 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-red-600 text-white flex items-center justify-center hover:bg-red-700 transition">
<i class="fab fa-youtube"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-800 text-white flex items-center justify-center hover:bg-gray-900 transition">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Send Us a Message</h3>
<form class="space-y-4">
<div>
<label for="name" class="block text-gray-700 mb-1">Your Name</label>
<input type="text" id="name" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div>
<label for="email" class="block text-gray-700 mb-1">Email Address</label>
<input type="email" id="email" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div>
<label for="phone" class="block text-gray-700 mb-1">Phone Number</label>
<input type="tel" id="phone" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
</div>
<div>
<label for="subject" class="block text-gray-700 mb-1">Subject</label>
<select id="subject" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500">
<option>Admission Inquiry</option>
<option>Academic Information</option>
<option>Feedback/Suggestion</option>
<option>Other</option>
</select>
</div>
<div>
<label for="message" class="block text-gray-700 mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition">
<i class="fas fa-paper-plane mr-2"></i> Send Message
</button>
</form>
</div>
</div>
<!-- Map -->
<div class="mt-12 bg-gray-100 rounded-lg overflow-hidden">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3899.22336574705!2d79.7862143148226!3d12.05979149136737!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a5265d4a7d7e6d3%3A0x3a5265d4a7d7e6d3!2sPuducherry!5e0!3m2!1sen!2sin!4v1621234567890!5m2!1sen!2sin" width="100%" height="400" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-bold mb-4">GHS Suthukeny</h3>
<p class="text-gray-400">Government High School, Suthukeny is a premier educational institution under the Directorate of School Education, Puducherry, committed to providing quality education to students.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#academics" class="text-gray-400 hover:text-white transition">Academics</a></li>
<li><a href="#students" class="text-gray-400 hover:text-white transition">Student Portal</a></li>
<li><a href="#gallery" class="text-gray-400 hover:text-white transition">Gallery</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Important Links</h3>
<ul class="space-y-2">
<li><a href="https://schooleducation.puducherry.gov.in/" target="_blank" class="text-gray-400 hover:text-white transition">Directorate of School Education</a></li>
<li><a href="https://www.py.gov.in/" target="_blank" class="text-gray-400 hover:text-white transition">Puducherry Government</a></li>
<li><a href="https://www.ncert.nic.in/" target="_blank" class="text-gray-400 hover:text-white transition">NCERT</a></li>
<li><a href="https://diksha.gov.in/" target="_blank" class="text-gray-400 hover:text-white transition">DIKSHA Portal</a></li>
<li><a href="https://www.cbse.gov.in/" target="_blank" class="text-gray-400 hover:text-white transition">CBSE</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Newsletter</h3>
<p class="text-gray-400 mb-4">Subscribe to our newsletter to receive updates on school events and announcements.</p>
<div class="flex">
<input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-700 text-white rounded-l-md focus:outline-none focus:ring-1 focus:ring-blue-500 w-full">
<button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-r-md">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400 text-sm">
<p>© 2023 Government High School, Suthukeny. All rights reserved. | Affiliated to Directorate of School Education, Puducherry</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-btn').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Login tabs functionality
document.getElementById('student-tab').addEventListener('click', function() {
document.getElementById('student-login').classList.remove('hidden');
document.getElementById('teacher-login').classList.add('hidden');
document.getElementById('parent-login').classList.add('hidden');
document.getElementById('student-tab').classList.add('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('teacher-tab').classList.remove('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('parent-tab').classList.remove('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('teacher-tab').classList.add('text-gray-500');
document.getElementById('parent-tab').classList.add('text-gray-500');
});
document.getElementById('teacher-tab').addEventListener('click', function() {
document.getElementById('student-login').classList.add('hidden');
document.getElementById('teacher-login').classList.remove('hidden');
document.getElementById('parent-login').classList.add('hidden');
document.getElementById('student-tab').classList.remove('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('teacher-tab').classList.add('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('parent-tab').classList.remove('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('student-tab').classList.add('text-gray-500');
document.getElementById('parent-tab').classList.add('text-gray-500');
});
document.getElementById('parent-tab').addEventListener('click', function() {
document.getElementById('student-login').classList.add('hidden');
document.getElementById('teacher-login').classList.add('hidden');
document.getElementById('parent-login').classList.remove('hidden');
document.getElementById('student-tab').classList.remove('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('teacher-tab').classList.remove('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('parent-tab').classList.add('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('student-tab').classList.add('text-gray-500');
document.getElementById('teacher-tab').classList.add('text-gray-500');
});
// Function to switch to parent login from button
function switchToParentLogin() {
document.getElementById('student-login').classList.add('hidden');
document.getElementById('teacher-login').classList.add('hidden');
document.getElementById('parent-login').classList.remove('hidden');
document.getElementById('student-tab').classList.remove('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('teacher-tab').classList.remove('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('parent-tab').classList.add('border-b-2', 'border-blue-600', 'text-blue-600');
document.getElementById('student-tab').classList.add('text-gray-500');
document.getElementById('teacher-tab').classList.add('text-gray-500');
}
// Close modal when clicking outside
window.addEventListener('click', function(e) {
if (e.target == document.getElementById('login-modal')) {
document.getElementById('login-modal').classList.add('hidden');
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=SaranRaj-12/lms" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>