Champions Academy Garhwa
body {
font-family: Arial, sans-serif;
}
.header {
background: linear-gradient(to right, #FFD700, #FFA500);
padding: 20px;
color: white;
text-align: center;
}
.about-section {
background-color: white; /* Changed to white */
padding: 20px;
color: black; /* Changed to black for better visibility */
text-align: center;
}
.content {
display: none;
}
.reviews-section {
background-color: white; /* Changed to white */
padding: 20px;
color: black; /* Changed to black for better visibility */
text-align: center;
}
.quiz-section {
background-color: white; /* Changed to white */
padding: 20px;
color: black; /* Changed to black for better visibility */
text-align: center;
}
.quiz-content {
display: none;
}
.button {
background-color: white;
border: none;
color: red;
padding: 5px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 4px 2px;
cursor: pointer;
}
Champions Academy Garhwa
About
Champions Academy Garhwa is a good quality coaching centre for students in Garhwa. We organize monthly quiz competitions.
+
Add yourself
Student Reviews
+
Review 1
Review 2
Review 3
function toggleContent(section) {
var content = document.getElementById(section + “Content”);
if (content.style.display === “none”) {
content.style.display = “block”;
} else {
content.style.display = “none”;
}
}