Join 4Shared Now!

Stay Updated

Enter your email address:

Visitors

Followers

Grab My Button

My Badge


d-codes is a dofollow blog.

Drop comment and get more backlink.

Friends

NetworkedBlog

Archieve

Showing posts with label HTML Table. Show all posts
Showing posts with label HTML Table. Show all posts

Create Table

Tables are defined with <table> tag, and a table is divided into rows (defined with <tr> tag) which are divided again into data cells (defined with <td> tag). tr stands for table rows and td stands for table data. A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, etc.

<table border="1">
<tr>
<td>1st row, 1st cell</td>
<td>1st row, 2nd cell</td>
</tr>
<tr>
<td>2nd row, 1st cell</td>
<td>2nd row, 2nd cell</td>
</tr>
</table>

The codes above will produce this table below :
1st row, 1st cell 1st row, 2nd cell
2nd row, 1st cell 2nd row, 2nd cell