Things You'll Need:
- Computer
- Basic understanding of HTML
- Web site or web page
- FTP server & client to upload your pages
-
Step 1
Locate the area in your HTML code on your website page where you want to build the table. Insert the <table> tag in this area.
-
Step 2
Insert the <tr> tag after the <table> tag, this tells the browser that a new table row is being formed. Then insert the <td> tag to tell the browser that this row contains data (td stands for table data). It should look like this, <table><tr><td>
-
Step 3
Enter the text, image or information you want contained in the table row after the <tr><td> tags. Your HTML will look like this, <table><tr><td> your text or image goes here. To end the row, use the </tr></td> tags.
-
Step 4
You can add additional rows by using another set of <tr><td> tags, after the </tr></td> tags.
-
Step 5
When you are finished building the table, insert the </table> tag. This tells the browser that the table is now "closed."












