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> <h1>L'élément col</h1> <table> <colgroup> <col span="2" style="background-color:red"> <col style="background-color:yellow"> </colgroup> <tr> <th>ISBN</th> <th>Titre</th> <th>Prix</th> </tr> <tr> <td>3476896</td> <td>Mon premier HTML</td> <td>$53</td> </tr> <tr> <td>5869207</td> <td>Mon premier CSS</td> <td>$49</td> </tr> </table> </body> </html>