Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder 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> <table> <caption style="text-align:right">Mes économies</caption> <tr> <th>Mois</th> <th>Économies</th> </tr> <tr> <td>Janvier</td> <td>$100</td> </tr> </table> <br> <table> <caption style="caption-side:bottom">Mes économies</caption> <tr> <th>Mois</th> <th>Économies</th> </tr> <tr> <td>Janvier</td> <td>$100</td> </tr> </table> </body> </html>