The attributes marked with <td> are used to set the properties of a cell in the table.
The <td> tag attribute of the table
File example: 10-24.htmSet the cell.
01 <!-- -------------------------------------------------------------------------------------------------------------------------
02 <!-- File example: 10-24.htm -->
03 <!-- File description: Set cell-->
04 <!-- -------------------------------------------------------------------------------------------------------------------------
05 <html>
06 <head>
07 <title>Set cell</title>
08 </head>
09 <body>
10 <h1>Mainstream web design software</h1>
11 <table border=3 width=400 height=100 bordercolor=#336699>
12 <tr>
13 <td bgcolor=#00ffff>Web image software</td><td>fireworks</td>
14 </tr>
15 <tr>
16 <td>Web page production software</td><td>dreamweaver</td>
17 </tr>
18 <tr>
19 <td>Web animation software</td><td>flash</td>
20 </tr>
21 </table>
22 </body>
23 </html>
Document descriptionThe cell marker <td> is used in the above code.