Sure, here's a small HTML code with CSS to display information about secondary schools: HTML: html
Secondary school, also known as high school, is a crucial stage of education for students. It typically covers grades 9 to 12 and provides a more specialized and in-depth curriculum compared to primary school.
Students study a wide range of subjects, including **mathematics**, **science**, **language arts**, **social studies**, **foreign languages**, **physical education**, and **electives** such as **music** and **art**.
Secondary schools offer various extracurricular activities like **sports teams**, **clubs**, **student government**, and **community service programs** to enrich the overall educational experience.
CSS (styles.css): css body { font-family: Arial, sans-serif; background-color: #f4f4f4; color: #333; margin: 0; padding: 0; } h1 { text-align: center; color: #007bff; } h2 { color: #009688; } p { line-height: 1.6; } JS (script.js): javascript // Interactive JS can be added here to enhance the user experience on the page This code provides a basic structure for a webpage about secondary schools, including information about the curriculum, subjects, and extracurricular activities. The CSS file styles the content to make it visually appealing, and the JavaScript file can be used to add interactive elements to the page.