0% found this document useful (0 votes)
4 views1 page

Faculty Chart

The document contains an HTML table displaying the number of students in different faculties categorized by boys and girls. The faculties listed are Arts, Science, and Commerce, with respective student counts. The table is styled for better readability with borders and background colors.

Uploaded by

anjalis66582
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Faculty Chart

The document contains an HTML table displaying the number of students in different faculties categorized by boys and girls. The faculties listed are Arts, Science, and Commerce, with respective student counts. The table is styled for better readability with borders and background colors.

Uploaded by

anjalis66582
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<head>

<style>
table {
width: 50%;
border-collapse: collapse;
margin: 20px auto;
}
th, td {
border: 1px solid black;
padding: 10px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>

<table>
<tr>
<th rowspan="2">Faculty</th>
<th colspan="2">Students</th>
</tr>
<tr>
<th>Boys</th>
<th>Girls</th>
</tr>
<tr>
<td>Arts</td>
<td>100</td>
<td>300</td>
</tr>
<tr>
<td>Science</td>
<td>400</td>
<td>300</td>
</tr>
<tr>
<td>Commerce</td>
<td>500</td>
<td>400</td>
</tr>
</table>
</body>
</html>

You might also like