HTML (33)
Table Attribute
Table Data (TD) attribute
Background color attribute (TD)
This is to change the color of the Table Data.
Example ↓↓↓↓↓
<head>
<title>My Page</title>
</head>
<body>
<table border="3">
<tr>
<td>Sample</td>'
<td bgcolor="Yellow">Sample</td>
<td>Sample</td>
<td>Sample</td>
</tr>
</table>
</body>
</html>
0 Comments