Month End Sale: Get Extra 10% OFF on Job-oriented Training! Offer Ending in
D
H
M
S
Get Now
HTML TABLES

HTML TABLES

14 May 2024
Intermediate
1.61K Views
17 min read

HTML Table

In this article, as part of HTML training, we will talk about the HTML table and ways to implement HTML Table, and what is the use of Table in HTML. HTML table is used to arrange data in the form of rows and columns. Tables are very useful in the presentation of relatable data together and are used to create databases also.

Let us understand this with the help of an example

Example:

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Table</title>
   </head>
   <body>
      <table border = "1">
         <tr>
            <td>Row first, Column first</td>
            <td>Row first, Column second</td>
         </tr>
         <tr>
            <td>Row second, Column first</td>
            <td>Row second, Column second</td>
         </tr>
      </table>
   </body>
</html>

Output

Table Head in HTML

To create a table head in HTML, we use the <th>…</th> tag. It is surrounded by the table row <tr>…</tr>. The <tr> tag is surrounded by the <table> tag. Table columns are used to represent different features of the data. It helps to describe the data under a column.

 Headers are the values that help to describe the data under the table. Headers should have been made bolder than the other content of the table. The <th> in HTML defines the header so that there is a difference between the column with heading text and the data content.

Table Border in HTML

Borders in the HTML table are not default we have to add the HTML Border attribute to make the border In the table to make it more attractive. The table border attribute is very important to provide a shape to our table. The above example shows where to use the Table Border in HTML but applying the table border with <style></style> tag (CSS) is most recommended.

Let us Understand this with the help of an example.

Example


<!DOCTYPE html>
<html>
   <head>
      <title>HTML Table</title>
   </head>
   <body>
<table border="1">
<tr>
<th>Table Heading in HTML </th><th>Table Heading in HTML </th>
</tr>
<tr>
<td>Data 1</td><td>Data 2</td>
</tr>
<tr>
<td>Data 3</td><td>Data 4</td>
</tr>
</table>
</body>
</html>

Output

<tbody> Tag in HTML

The <tbody> Tag in HTML is used to define the body content of an HTML Table. It creates a separate semantic block in the table. The table head in HTML<thead> </thead> and table footer in HTML <tfoot></tfoot> are also a part of the <tbody></tbody> tag in HTML.

Let us take an example to understand the <tbody> tag

Example

<!DOCTYPE html>
<html>
   <head>
      <title>Table in HTML</title>
   </head>
   <body>
      <table style = "width:100%" border = "1">
         <thead>
            <tr>
               <td colspan = "4">Table Head in HTML</td>
            </tr>
         </thead>
         <tfoot>
            <tr>
               <td colspan = "4">Table Footer in HTML</td>
            </tr>
         </tfoot> 
         <tbody>
            <tr>
               <td>Row 1</td>
                <td>Row1</td>
               <td>Rowl 1</td>
               <td>Row 1</td>
            </tr>
            <tr>
               ...more rows here containing four cells...
            </tr>
         </tbody>
         <tbody>
            <tr>
               <td>Rowl 2</td>
               <td>Row 2</td>
               <td>Row 2</td>
               <td>Row 2</td>
            </tr>
            <tr>
               ...more rows here containing four cells...
            </tr>
         </tbody> 
      </table>
   </body>
</html>

Output

Colspan and Rowspan in HTML

Colspan and Rowspan attributes are very useful we will use the colspan tag in HTML if we want to merge two or more columns into a single column. Similarly, we will use the rowspan tag in HTML if you want to merge two or more rows.

Let us understand this with the help of an example

Example

<!DOCTYPE html>
<html>
   <head>
      <title>Colspan and Rowspan in HTML</title>
   </head>
   <body>
      <table border = "1">
         <tr>
            <th>Column 1</th>
            <th>Column 2</th>
            <th>Column 3</th>
         </tr>
         <tr>
            <td rowspan = "2">valuel 1</td>
            <td>valuel 2</td>
            <td>valuel 3</td>
         </tr>
         <tr>
            <td>value 2</td>
            <td>valuel 3</td>
         </tr>
         <tr>
            <td colspan = "3">valuel 1</td>
         </tr>
      </table>
   </body>
</html>

Output

Caption in HTML Table

In the last section, let us know about how to add a Caption tag in HTML Table. It is used to describe the caption of a table. This tag will be used just after the <table> tag. Only one caption can be used for one table and it is aligned to the center by default. 

Syntax:

<caption align = "value" ></caption>
Summary

In the HTML table, we learn how can we store data in tabular form. We also learn how to create tables in HTML and learned about the tags which are used in tables such as <td> in HTML which is used to define data <tr> in HTML which is used to define rows, <th> in HTML which is used to define the header section of the table, and how to make table borders in HTML, the use of Table Head in HTML, the working of colspan tag and rowspan tag in HTML, etc. Furthermore, the knowledge gained from HTML Certification will enable you to leverage tables effectively within your web development projects.

Top 50 HTML Interview Questions and Answers

Take our Html skill challenge to evaluate yourself!

In less than 5 minutes, with our skill challenge, you can identify your knowledge gaps and strengths in a given skill.

GET FREE CHALLENGE

Share Article

Live Classes Schedule

Our learn-by-building-project method enables you to build practical/coding experience that sticks. 95% of our learners say they have confidence and remember more when they learn by building real world projects.
Software Architecture and Design Training Jul 28 SAT, SUN
Filling Fast
05:30PM to 07:30PM (IST)
Get Details
.NET Solution Architect Certification Training Jul 28 SAT, SUN
Filling Fast
05:30PM to 07:30PM (IST)
Get Details
Azure Developer Certification Training Jul 28 SAT, SUN
Filling Fast
10:00AM to 12:00PM (IST)
Get Details
Advanced Full-Stack .NET Developer Certification Training Jul 28 SAT, SUN
Filling Fast
07:00AM to 09:00AM (IST)
Get Details
ASP.NET Core Certification Training Jul 28 SAT, SUN
Filling Fast
07:00AM to 09:00AM (IST)
Get Details
Data Structures and Algorithms Training with C# Jul 28 SAT, SUN
Filling Fast
08:30PM to 10:30PM (IST)
Get Details
Microsoft Azure Cloud Architect Aug 11 SAT, SUN
Filling Fast
03:00PM to 05:00PM (IST)
Get Details
Angular Certification Course Aug 11 SAT, SUN
Filling Fast
09:30AM to 11:30AM (IST)
Get Details
ASP.NET Core Project Aug 24 SAT, SUN
Filling Fast
07:00AM to 09:00AM (IST)
Get Details

Can't find convenient schedule? Let us know

About Author
Sakshi Dhameja (Author and Mentor)

She is passionate about different technologies like JavaScript, React, HTML, CSS, Node.js etc. and likes to share knowledge with the developer community. She holds strong learning skills in keeping herself updated with the changing technologies in her area as well as other technologies like Core Java, Python and Cloud.

Self-paced Membership
  • 22+ Video Courses
  • 800+ Hands-On Labs
  • 400+ Quick Notes
  • 55+ Skill Tests
  • 45+ Interview Q&A Courses
  • 10+ Real-world Projects
  • Career Coaching Sessions
  • Email Support
Upto 60% OFF
Know More
Accept cookies & close this