In this page we will learn how to use HTML table tag with the help of examples. HTML table tag is used to display the data into tabular form on the web page.
Here is an example of HTML Table:
| Programming/Scripting Lanugage | Use |
| C++ | Used to develop many types of applications |
| PHP | PHP is scripting language and mostly used in developing dynamic web applications |
| Java | Used for development of enterprise applications |
| ASP | Programming language from Microsoft for development of dynamic web applications |
The above example shows how to use table tag for displaying tabular data on web page.
Here is the code used for creating above table:
<
table style="width: 39%" cellspacing="1"> <tr> <td style="width: 207px"><strong>Programming/Scripting Lanugage
</strong></td> <td style="width: 209px"><strong>Use</strong></td> </tr> <tr> <td style="width: 207px">C++</td> <td style="width: 209px">Used to develop manytypes of applications
</td> </tr> <tr> <td style="width: 207px">PHP</td> <td style="width: 209px">PHP is scriptinglanguage and mostly used in developing dynamic
web applications
</td> </tr> <tr> <td style="width: 207px">Java</td> <td style="width: 209px">Used for development ofenterprise applications
</td> </tr> <tr> <td style="width: 207px">ASP</td> <td style="width: 209px">Programming languagefrom Microsoft for development of dynamic web
applications
</td> </tr></
table>
In HTML tables are defined using <table> tag. It contains <tr>..</tr> tag for creating new row and <td>..</td> for creating columns. The <td>...</td> tags are places under <tr>....</tr> tag. Here is simple use of HTML table tag:
<table>
<tr>
<td>col1</td>
<td>Col2</td>
</tr>
<tr>
<td>Col1</td>
<td>Col2</td>
</tr>
</table>
Table tag is very useful in layout of web page components.
More Tutorials on roseindia.net for the topic HTML table example.If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.