HTML Code :
<table border="0" cellspacing="0" cellpadding="10">
<tr>
<td bgcolor="#FFFF66">Yellow Background</td>
</tr>
</table>
Output
Yellow Background |
HTML Code :
<table border="0" cellspacing="50" cellpadding="10"> <tr> <td bgcolor="#FFFF66">Yellow Background</td> </tr> </table>
Output
Yellow Background |
HTML Code :
<table border="0" cellspacing="50" cellpadding="50"> <tr> <td bgcolor="#FFFF66">Yellow Background</td> </tr> </table>
Output
Yellow Background |
BACKGROUND COLOR HEADER
Kode HTML :
<table border="0" cellspacing="0" cellpadding="10">
<tr>
<td bgcolor="#FFFF66"><h1>This is header 1</h1></td>
</tr>
</table>
Output
This is header 1 |
Kode HTML :
<table border="0" cellspacing="0" cellpadding="10">
<tr>
<td bgcolor="#FFFF66"><h2>This is header 2</h2></td>
</tr>
</table>
Output
This is header 2 |
Kode HTML :
<table border="0" cellspacing="0" cellpadding="10">
<tr>
<td bgcolor="#FFFF66"><h3>This is header 3</h3></td>
</tr>
</table>
Output
This is header 3 |