How to make table on a web page..I hv designed a table in adobe n thn place it on the page bt can there be another to make table else the Insert table option in dreamweaver as that table can't be formatted.
Regards,
How to make table on a web page..I hv designed a table in adobe n thn place it on the page bt can there be another to make table else the Insert table option in dreamweaver as that table can't be formatted.
Regards,
Code it manually. Use tr for each table row, and td for each table data cell. Close all tags.
<p>Example of a 3X3 table. The cell contents describe their locations.</p>
<table>
<tr>
<td>This is the top left cell</td>
<td>This is the top center cell</td>
<td>This is the top right cell</td>
</tr>
<tr>
<td>This is the middle left cell</td>
<td>This is the middle center cell</td>
<td>This is the middle right cell</td>
</tr>
<tr>
<td>This is the bottom left cell</td>
<td>This is the bottom center cell</td>
<td>This is the bottom right cell</td>
</tr>
</table>
Here are few links to teach you html tables:
http://www.w3schools.com/html/html_tables.asp
http://pagetutor.com/table_tutor/index.html
http://www.tutorialized.com/tutorials/HTML/Tables/1
Or if you still want to do this with adobe (dreamweaver I suppose, since there is GoLive too) go here
http://www.tutorialized.com/tutorials/Dreamweaver/Tables/1
MidiMagic's is ture,But I do not quite understand the meaning of Q
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.