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

Create Table of Contents

I'm using my Feed to create the Table of Contents for my blogs. You can see the example HERE, HERE, and HERE. And here is the script I got from Google Feed Burner to create this table of contents :


<script src="http://feeds.feedburner.com/dkids-zone?format=sigpro" type="text/javascript" ></script><noscript><p>Subscribe to RSS headline updates from: <a href="http://feeds.feedburner.com/dkids-zone"></a></p> </noscript>


Note :
  • Activate the "BuzzBoost" in your feed, and set the Number of Items to Display: All.
  • Change my feed URL with your own feed URL (shown in red).

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