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,

Recommended Answers

All 3 Replies

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>

MidiMagic's is ture,But I do not quite understand the meaning of Q

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.