Table in HTML

<html>
<head>
<title>my table</title>
<head>
<body>
<center>
<table border="1" cellspacing="0" width="500">
 <tr>
  <th colspan="6"><font size="80">Time table</font></th>
 </tr>
 <tr>
  <th rowspan="6">hours</th>
  <th>mon</th>
  <th>tue</th>
  <th>wed</th>
  <th>thu</th>
  <th>fri</th>
 </tr>
 <tr>
  <td>Science</td>
  <td>maths</td>
  <td>Science</td>
  <td>maths</td>
  <td>arts</td>
 </tr><!-- prepared by vishal Rathod -->
 <tr>
  <td>Social</td>
  <td>History</td>
  <td>English</td>
  <td>Social</td>
  <td>Sports</td>
 </tr>
 <tr><th colspan="5">Lunch</th></tr>
 <tr>
  <td>Science</td>
  <td>Maths</td>
  <td>Science</td>
  <td>Maths</td>
  <td rowspan="2">Project</td>
 </tr>
 <tr>
  <td>Social</td>
  <td>History</td>
  <td>English</td>
  <td>Social</td>
 </tr>
</table>
</center>
</body>
</html>

Comments

Popular posts from this blog

program that compresses windows BMP image file using java

react-native multiselect dropdown