Horje
How to create HTML Table Cells

Each table cell is defined by a <td> and a </td> tag.

td stands for table data.


Example of HTML Table Cells

Everything between <td> and </td> are the content of the table cell.
 <table>
  <tr>
    <td>Emil</td>
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
</table> 

Full Example of HTML Table Cells

Everything between <td> and </td> are the content of the table cell.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<style>
table, th, td {
  border:1px solid black;
}
</style>
<body>

<h2>TD elements define table cells</h2>

<table style="width:100%">
  <tr>
    <td>Emil</td>
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
</table>

<p>To understand the example better, we have added borders to the table.</p>

</body>
</html>

Output should be:

Full Example of HTML Table Cells





Category:
Web Tutorial
Sub Category:
HTML Tables
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference