<table> : J'y perd mon latin !
Bonjour,
En écrivant le script ci-dessous, je m'attendais à voir apparaître un cadre jaune bordé de noir avec au centre une phrase écrite en rouge !
Quelqu'un peut il me dire où est l'erreur ?
Merci
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body>
<table style="background-color:#000000" align="center" width="50%" cellspacing="10" cellpadding="10">
<tr>
<td>
<table style="background-color:#FFFF00" align="center">
<font color="#FF0000"><br>Salut noble sire<br><br></font>
</table>
</td>
</tr>
</table>
</body>
</html> |