Home page Basic html Text and font tags Html forms JavaScript Free Tracking Website hosting Free traffic Easy webpage layout can be done with tables. Tables divide the page into separate sections. Invisible tables have no borders. Add different color to different page sections. Add interactive forms. BASIC HTML TABLE LAYOUT
CODE FOR THIS TABLE <table bgcolor="#000000" width="300" cellpadding="0" cellspacing="0" border="1"> <caption>TABLE CAPTION ( OPTIONAL )</caption> <tr> <td bgcolor="#ffffff" align="center" colspan="2"> 1 </td></tr> <tr> <td bgcolor="#ffffff" valign="top" align="left" Rowspan="2"> 2 </td> <td bgcolor="#ffffff" align="center"> 3 </td></tr> <tr> <td bgcolor="#ffffff" align="left"> 4 </td></tr> </table>
|