Admissions 2025 – Your School Name
body {
font-family: ‘Arial’, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
}
.header {
text-align: center;
padding: 30px 20px;
background-color: #4caf50;
color: white;
border-bottom: 5px solid #ffeb3b;
}
.header img {
width: 120px;
height: auto;
border-radius: 50%;
}
.header h1 {
margin: 15px 0 5px;
font-size: 2em;
}
.header h3 {
margin: 5px 0;
font-size: 1.2em;
font-weight: normal;
}
.content {
padding: 20px;
background-color: #ffffff;
border-radius: 15px;
margin: 20px auto;
max-width: 1200px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.intro {
text-align: center;
background-color: #e8f5e9;
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
}
.intro h2 {
font-size: 1.8em;
color: #4caf50;
}
.intro p {
font-size: 1.2em;
margin: 10px 0 0;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 20px 0;
}
.feature {
background-color: #fff;
border: 1px solid #4caf50;
border-radius: 10px;
padding: 15px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.feature img {
width: 100%;
height: auto;
border-radius: 10px;
max-height: 200px;
object-fit: cover;
margin-bottom: 15px;
}
.feature p {
font-size: 1em;
margin: 0;
color: #333;
}
.footer {
padding: 20px;
background-color: #4caf50;
color: white;
text-align: center;
font-size: 0.9em;
}
.footer p {
margin: 5px 0;
}
Welcome to Your Child’s Bright Future!
Our school provides a holistic learning experience to nurture your child’s academic, social, and personal growth. With cutting-edge technology, dedicated teachers, and a focus on all-round development, we ensure your child is ready for the future.
Our Features
Strong Parent-School Partnership
Excellence in Academics & Arts
Nature and Learning Combined
Creative Workshops
Kids Skilling – NEET/IIT, Grammar, IQ and Much More (LKG to Class 10)
Results & AI-based Analysis
Frequent Communication with Parents
Psychological Assistance for Students & Parents
National Competitions: Math, Science, IQ etc.
Online Classes & Homework Assistance in Emergency
Robotics & AI Workshops
Parents’ Training Programs
https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js
https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.4.0/jspdf.umd.min.js
async function downloadPDF() {
const { jsPDF } = window.jspdf;
const pdf = new jsPDF(“p”, “pt”, “a4”);
const element = document.getElementById(‘main-content’);
const canvas = await html2canvas(element, {
scale: 2,
useCORS: true, // For cross-origin images
});
const imgData = canvas.toDataURL(‘image/png’);
const pdfWidth = pdf.internal.pageSize.getWidth();
const pdfHeight = (canvas.height * pdfWidth) / canvas.width;
pdf.addImage(imgData, ‘PNG’, 0, 0, pdfWidth, pdfHeight);
pdf.save(‘Admissions2025.pdf’);
}