| How to Insert Table in Html |
|
Tables are very useful features to have in any type of document. They allow data to be neatly arranged, viewed, and quickly referenced. While building a table using HTML can seem a bit daunting, it is fairly intuitive after some practice. Tables can be used for small amounts of data or a large range of data. There are numerous ways to create tables in web pages. Inserting tables using HTML is discussed below. For serious users of HTML or web design, there exists a wealth of online degrees, courses, and programs on the web. If you are just getting started or only need the basics, this guide is a great start. You can insert table in your html page by using <table> tag. You have to use <td> which content data of the cell data can be the image, text, list etc tag (table data) and <tr> tag (table row) along with the table tag. You can also define heading in the table by using <th> tag that is table heading. Aborder is the attribute of the table tag to put the border to the table. Use following is the code to insert table with table heading:
<table border="1">
<tr> <th>Heading1</th> <th> Heading2</th> </tr> <tr> <td>first row, first cell</td> <td>first row, second cell</td> </tr> <tr> <td>second row, first cell</td> <td>second row, second cell</td> </tr> </table> This will be the result:
|
Learn drawing technique, text effect, 3D graphic & more refer Illustrator Tutorial.
If you want to learn to design website learn through our Dreamweaver Tutorial.
Save your time for website designing and speed up your work by using CSS.

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License