Loading Please Wait...
HTML tables allow us to arrange data in rows and columns.
To define a table, we use the following tag:
<!DOCTYPE html>
<html>
<body>
<table>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
<tr>
<td>John</td>
<td>john@gmail.com</td>
</tr>
<tr>
<td>Micheal</td>
<td>micheal@gmail.com</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<table border="1">
<tr>
<th>Name</th>
<th>Email</th>
</tr>
<tr>
<td>John</td>
<td>john@gmail.com</td>
</tr>
<tr>
<td>Micheal</td>
<td>micheal@gmail.com</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td{border: 1px solid #000000}
</style>
</head>
<body>
<table>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
<tr>
<td>John</td>
<td>john@gmail.com</td>
</tr>
<tr>
<td>Micheal</td>
<td>micheal@gmail.com</td>
</tr>
</table>
</body>
</html>
<caption> defines caption for the table
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td{border: 1px solid #000000}
</style>
</head>
<body>
<table>
<caption>Employe Data</caption>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
<tr>
<td>John</td>
<td>john@gmail.com</td>
</tr>
</table>
</body>
</html>
<colgroup> and <col> defines the group of column to take action such as styling at once.
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td{border: 1px solid #000000}
</style>
</head>
<body>
<table>
<colgroup>
<col style="background-color: #ffaadd">
<col style="background-color: #4ad134">
</colgroup>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
<tr>
<td>John</td>
<td>john@gmail.com</td>
</tr>
</table>
</body>
</html>
HTML5 allow us to group content of table header, body, and footer with <thead>, <tbody>, and <tfoot> tags respectively.
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td{border: 1px solid #000000}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>john@gmail.com</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</tfoot>
</table>
</body>
</html>
How you feel about this blog:
Share this blog on:
If you find any error in the turtorials, or want to share your suggestion/feedback, feel free to send us email at: info@lynxsia.com
Contact UsWe are concern with various development process like website design & development, E-commerce development, Software development, Application development, SMS & Bulk SMS Provider, PWA Development, and many more..
Copyright ©
, Lynxsia IT Solutions, All rights reserved