HTML (29) PART 2
Table Attribute
Background color attribute
This will change the color of the background
Tag : <bgcolor>
Example ↓↓↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
</head>
<body>
<table border="8" bgcolor="yellow">
<tr>
<td>Sample</td>
<td>Sample</td>
<td>Sample</td>
</tr>
</table>
</html>
0 Comments