Learn Basic HTML Complete Course part 11

3 min read

HTML Table


HTML table tag is used to display data in tabular form (row * column). There can be many columns in a row.

We can create a table to display data in tabular form, using <table> element, with the help of <tr> , <td>, and <th> elements.

In Each table, table row is defined by <tr> tag, table header is defined by <th>, and table data is defined by <td> tags.

HTML tables are used to manage the layout of the page e.g. header section, navigation bar, body content, footer section etc. But it is recommended to use div tag over table to manage the layout of the page.

HTML Table Tags


TagDescription
<table>It defines a table.
<tr>It defines a row in a table.
<th>It defines a header cell in a table.
<td>It defines a cell in a table.
<caption>It defines the table caption.
<colgroup>It specifies a group of one or more columns in a table for formatting.
<col>It is used with <colgroup> element to specify column properties for each column.
<tbody>It is used to group the body content in a table.
<thead>It is used to group the header content in a table.
<tfooter>It is used to group the footer content in a table.


HTML Table Example

<!DOCTYPE>
<html> 
<body> 
<table border="1px" cellpadding="10px" width="100%"> 
        <tr>
<th>Name</th>
<th>Branch</th>
<th>Semester</th>
</tr>
        <tr>
<td>Mubassir Ali</td>
<td>CS</td>
<td>5</td>
</tr> 
        <tr>
<td>Nasir Ali</td>
<td>Physics</td>
<td>8</td>
</tr> 
        <tr>
<td>Azlan Khan</td>
<td>Civil</td>
<td>2</td>
</tr> 
        <tr>
<td>Haseeb Khan</td>
<td>EC</td>
<td>7</td>
</tr> 
    </table> 
</body>
</html> 
 

output:

NameBranchSemester
Mubassir AliCS5
Nasir AliPhysics8
Azlan KhanCivil2
Haseeb KhanEC7


HTML Table Attributes

HTML Attributes are assign by two methods :
1) Using HTML Attribute
2) By CSS Property

Various attributes of table tag are descibe below :

1) Table Border
You can use border attribute of table tag in HTML to specify border. But it is not recommended now.

2) Cell padding
You can specify padding for table header and table data by using cell padding. The cellpadding attribute of HTML table tag is obselete now.

3) Width
We can specify the HTML table width using the CSS width property. It can be specify in pixels or percentage.

Table Example by tag attribute

Example :

<!DOCTYPE>
<html> 
<body> 
<table border="1px" cellpadding="10px" width="100%"> 
        <tr>
<th>Name</th>
<th>Branch</th>
<th>Semester</th>
</tr>
        <tr>
<td>Atif</td>
<td>CE</td>
<td>5</td>
</tr> 
        <tr>
<td>Mubassir</td>
<td>IT</td>
<td>8</td>
</tr> 
        <tr>
<td>Nasir</td>
<td>Civil</td>
<td>2</td>
</tr> 
        <tr>
<td>Ali</td>
<td>EC</td>
<td>7</td>
</tr> 
    </table> 
</body>
</html>
  

output:

NameBranchSemester
AtifCE5
MubassirIT8
NasirCivil2
AliEC7


Table Example by CSS Property

<!DOCTYPE>
<html> 
   <head>
    <style> 
     table, th, td { 
   text-align: center;
   width: 300px;
   border: 1px solid black;
   border-collapse: collapse; 
      } 

      th, td {
          padding: 10px;
     }
    </style> 
   </head>
   <body> 
<table> 
        <tr>
<th>Name</th>
<th>Branch</th>
<th>Semester</th>
</tr>
        <tr>
<td>Mansoor</td>
<td>CE</td>
<td>5</td>
</tr> 
        <tr>
<td>Haleem</td>
<td>IT</td>
<td>8</td>
</tr> 
        <tr>
<td>Haseeb</td>
<td>Civil</td>
<td>2</td>
</tr> 
        <tr>
<td>Azlan</td>
<td>EC</td>
<td>7</td>
</tr> 
    </table> 
  </body>
</html>  

output:

NameBranchSemester
MansoorBBA5
HaleemIT8
HaseebCivil2
AzlanEC7


Table with colspan

If you want to make a cell span more than one column, you can use the colspan attribute.

It will divide one cell/row into multiple columns, and the number of columns depend on the value of colspan attribute.

Let's see the example that span two columns.

<!DOCTYPE>
<html> 
    <head>
    <style> 
        table, th, td { 
           border: 1px solid black; 
           border-collapse: collapse; 
       }

       th,td { 
          padding: 5px; 
          text-align: left;     
       } 
    </style>
    </head>

    <body> 
    <table style="width:100%"> 
        <tr> 
           <th>Name</th> 
           <th colspan="2">Mobile No.</th> 
        </tr> 
       
        <tr> 
           <td>Mubassir Ali</td> 
           <td>923063855</td> 
           <td>923451590</td> 
        </tr> 
    </table> 
    </body>
</html>  

output:

NameMobile No.
Mubassir       Ali923063855923451590


Table with rowspan

If you want to make a cell span more than one row, you can use the rowspan attribute.

It will divide a cell into multiple rows. The number of divided rows will depend on rowspan values.

Let's see the example that span two rows.

<!DOCTYPE>
<html> 
    <head>
    <style> 
        table, th, td { 
           border: 1px solid black; 
           border-collapse: collapse; 
       }

       th,td { 
          padding: 5px; 
          text-align: left;     
       } 
    </style>
    </head>

    <body> 
    <table style="width:100%"> 
        <tr> 
           <th>Name</th> 
           <th colspan="2">Mobile No.</th> 
        </tr> 
       
        <tr> 
           <td>Mubassir Ali</td> 
           <td>923063855</td> 
           <td>923451590</td> 
        </tr> 
    </table> 
    </body>
</html>  

output:

NameMubassir Ali
Mobile No.923063855
923451590


Styling HTML table even and odd cells

Example :

<!DOCTYPE>
<html> 
    <head>
<style> 
table, th, td { 
border: 1px solid black; 
border-collapse: collapse; 

th, td { 
padding: 10px; 

table#alter tr:nth-child(even) { 
background-color: #eee; 

table#alter tr:nth-child(odd) { 
background-color: #fff; 

table#alter th { 
color: white; 
background-color: gray; 

</style> 
    </head>

    <body> 
    <table id="alter"> 
        <tr>
<th>Name</th>
<th>Branch</th>
<th>Semester</th>
</tr>
        <tr>
<td>Mubassir</td>
<td>CS</td>
<td>5</td>
</tr> 
        <tr>
<td>Nasir</td>
<td>Physics</td>
<td>8</td>
</tr> 
        <tr>
<td>Haleem</td>
<td>Civil</td>
<td>2</td>
</tr> 
        <tr>
<td>Haseeb</td>
<td>EC</td>
<td>7</td>
</tr> 
    </body>
</html>  

 output:


NameBranchSemester
Mubassir CS5
Nasir Physics 8
HaleemCivil2
Haseeb EC7



You may like these posts

  • HTML TableHTML table tag is used to display data in tabular form (row * column). There can be many columns in a row.We can create a table to display data in tabular form, using <…
  • HTML TagsHTML tags are like keywords which defines that how web browser will format and display the content. With the help of tags, a web browser can distinguish between an HTML co…
  • HTML Id AttributeThe id attribute refers to a unique value for an HTML element. This HTML id value can be used with CSS and JavaScript to perform certain task.HTML id with CSSIn CS…
  • HTML HeadingA HTML heading or HTML h tag can be defined as a title or a subtitle which you want to display on the webpage. When you place the text within the heading tags <h1>…
  • In this article, I am going to share some of the best, free online courses to learn Web Development using HTML and CSS. If you are new to web development space then you can use the…
  • HTML HeadThe HTML <head> element is used as a container for metadata (data about data). It is used between <html> tag and <body> tag.The head of an HTML document …

Post a Comment