HTML Table

In this tutorial, we will learn about HTML Table. HTML Table element is used to show the table on the web page. Suppose you want to show Time Table on your web page in this case you can use Table element. Let’s check tags use to create a table in a Web page.

We have four main tags to make a table on the web page.

  • table tag: We use table tag to start and end table.
  • tr tag: tr tag use to start a new row in a table every time to start tr tag it creates a new row in the table.
  • th tag: In tr tag, we write th tag to add heading in table
  • td tag: In tr tag, we write td tag to add data in the table.

Example:

<table border="1px">
<tr><th>Student Name</th><th>Marks</th></tr>
<tr><td>Ravi</td><td>85</td></tr>
<tr><td>Sahil</td><td>90</td></tr>
<tr><td>Kunal</td><td>75</td></tr>
<tr><td>Sanjay</td><td>60</td></tr>
</table>

Output:

Student Name Marks
Ravi 85
Sahil 90
Kunal 75
Sanjay 60
Spread the love
Scroll to Top