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> <head> <style> table, th, td { bordure: 1px solide noir; } </style> </head> <body> <h1>En-têtes de tableau</h1> <h2>En-têtes horizontaux :</h2> <table> <tr> <th>Nom</th> <th>Email</th> <th>Téléphone</th> </tr> <tr> <td>John Doe</td> <td>john.doe@example.com</td> <td>123-45-678</td> </tr> </table> <h2>En-têtes verticaux :</h2> <table> <tr> <th>Nom:</th> <td>John Doe</td> </tr> <tr> <th>Email:</th> <td>john.doe@example.com</td> </tr> <tr> <th>Téléphone:</th> <td>123-45-678</td> </tr> </table> </body> </html>