Showing posts with label table. Show all posts
Showing posts with label table. Show all posts

TYBSC IT Sem 6 Exam Time Table 2010



Hi Friends!!!
Here is the TYBSc IT Sem VI time table.
Start studying...


Read More..

TYBSc IT Sem 6 ATKT Exam Time Table 2010

Hey friends as many of u were asking for the time tables, here is the TYBSc IT Sem-6 ATKT Exam Time Table 2010 declared by the university.

TYBSc IT Sem-6 ATKT Exam Time Table 2010
Read More..

TYBSc IT Sem 5 Exam Time Table 2010 Regular

TYBSc IT Sem 5 Exam Time Table 2010 ( Regular )

Read More..

How to create a table in blogspot com

Blogger tricks-making table in bloggerSometimes we try to list some content in a table but there is no tool to create a table in blogger. Here is the code to create the table in blogger.
<table><tbody>
<tr><td>---row1 col1---</td><td>---row1 col2---</td><td>---row1 col3---</td></tr>
<tr><td>---row2 col1---</td><td>---row2 col2---</td><td>---row3 col3---</td></tr>
<tr><td>---row3 col1---</td><td>---row3 col2---</td><td>---row3 col3---</td></tr>
</tbody></table>
  • Paste this code in Edit Html and configure according to your needs
  • The above code creates a table of 3 rows and 3 columns.
  • The code <td>----</td> creates a cell and <tr>---</tr> creates a row
  • You can put anything like a JavaScript, flash etc inside each cell.

Once you paste the above code the output will be as below:
---row1 col1------row1 col2-------row1 col3---
---row2 col1------row2 col2------row3 col3---
---row3 col1------row3 col2------row3 col3---
Read More..