Tableaux HTML

yassincreator Messages postés 9 Statut Membre -  
 Yukino -
Bonjour, je n'arrive pas a crée ce tableaux j'aimerais bien vous me proposez une aide ;)

http://img560.imageshack.us/img560/5210/tableaux.jpg

et merci d'avance !!

1 réponse

  1. Yukino
     
    Bonsoir,

    Voici le code qui permet de créer votre tableau:

    <html>
    <body>
    <table width="600px" height="300px" border=1>
    <tr>
    <td colspan="4" width="100%"> </td>
    </tr>

    <tr>
    <td width="25%"> </td>
    <td colspan="2" width="50%"> </td>
    <td width="25%"> </td>
    </tr>

    <tr>
    <td colspan="2" width="50%"> </td>
    <td colspan="2" width="50%"> </td>
    </tr>
    </table>
    </body>
    </html>

    Bonne chance =)
    1