<td> Tag in HTML 5

In this article I am going to explain about <td> tag in html 5.
  • 2030

Definition

The <td>  tag use for defined table cell. In html there are two type of cell. Header cell that defined table header information its defined by <th> tag, and body cell that defined table body information its defined by <td> tag.

Browser that supports <td> tag

Internet explorer, Mozilla firefox, Google chrome, Opera and Safari browsers.

Lets take an example of <td> tag

<html>
    <head>
        <table border="1">
          <tr>
              <th>Name<th>
               <tr><td>prabhakar<td></tr>
               <tr><td>Ajay</td></tr>
          </tr>
          </table>
     </head>
</html>

Output

th.jpg

Further Readings

You may read more about HTML 5 Tags:  here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.