Computer Science, asked by bhardwajshubh00, 1 month ago

Design a table with 3 rows and 4 columns. The contents of the first row should appear as headings and they should be center aligned. The caption of the table should be DPS and aligned to the bottom of the table. The contents of the cell can be of your choice.​

Answers

Answered by gujjarkingdevbaisoya
0

Explanation:

Design a table with 3 rows and 4 columns. The contents of the first row should appear as headings and they should be center aligned. The caption of the table should be DPS and aligned to the bottom of the table. The contents of the cell can be of your choice.

Answered by BonderBlaziken
0

Answer: I asked a similar question but no one answered. However I was able to figure out the answer and I would be happy to share it with you

Explanation:

<html>

<body>

<table border="2" Height="100%" bgcolor= "GREEN"

<caption align="BOTTOM">

<h2> DPS </h2>

</caption>

<tr VALIGN="MIDDLE" ALIGH="CENTER"

      <th> 4 sections with the amount of students in it</th>

      <th> VII-A</th>

      <th> VII-B</th>

      <th> VII-C</th>

      <th> VII-D</th>

</tr>

<tr VALIGN="BOTTOM">

       <td>Section A</td>

       <td>Section B</td>

       <td>Section C</td>

       <td>Section D</td>

</tr>

<tr VALIGN="TOP">

       <td>39 Students</td>

       <td>38 Students</td>

       <td>40 Students</td>

       <td>37 Students</td>

</tr>

</body>

</html>

Hope this Helps!

Similar questions