Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <style> table, th, td { bordure:1px solide noir; } </style> <body> <h2>Une table HTML de base</h2> <table style="width:100%"> <tr> <th>Société</th> <th>Contact</th> <th>Pays</th> </tr> <tr> <td>Alfreds Futterkiste</td> <td>Maria Anders</td> <td>Allemagne</td> </tr> <tr> <td>Centro commercial Moctezuma</td> <td>Francisco Chang</td> <td>Mexique</td> </tr> </table> <p>Pour mieux comprendre l'exemple, nous avons ajouté des bordures au tableau.</p> </body> </html>