Wednesday, June 17, 2009

Start design with table

If you want to start designing web page the start design with the table control. Nothing can be in a good shape without using table. During my university years, I spent a lot of time to discover that table is the key of all kind of design efficiently and with full control. Those who have little knowledge about HTML language they can easily realize my following code. Just start like this:

A Simple web page design:


<table>
<tr>
<td>First Column</td>
<td>Second Column</td>
<td>Third Colimn</td>
</tr>
</table>


This is a simple page design using a table which has three columns. Now each of these 3 columns can be further nested with other different controls like table, GridView, labels, buttons.....more and more.
However, just start with this ...you will be benifitted I am sure!

Thanks.
Masud (18.06.09)

No comments:

Post a Comment