Tuesday 17 July 2012

How to create tables without borders using html


<!DOCTYPE html>
<html>
<body>

<h4>This table has no borders:</h4>
<table>
<tr>
  <td>10</td>
  <td>20</td>
  <td>30</td>
</tr>
<tr>
  <td>40</td>
  <td>50</td>
  <td>60</td>
</tr>
</table>

<h4>And this table has no borders:</h4>
<table border="0">
<tr>
  <td>10</td>
  <td>20</td>
  <td>30</td>
</tr>
<tr>
  <td>40</td>
  <td>50</td>
  <td>60</td>
</tr>
</table>

</body>
</html>

0 Responses to “How to create tables without borders using html”

Post a Comment