Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> th, td { padding: 10px; border: 1px solid #666; } </style> </head> <body> <table style="width:80%; margin:30px auto; border-collapse:collapse;"> <tr style="background-color:#1c87c9; color:#fff;"> <th>Mois</th> <th>Année</th> </tr> <tr> <td style="background-color:#e6ebef;">Mars</td> <td rowspan="2" style="background-color:#a3cced; text-align:center;">2014</td> </tr> <tr style="background-color:#e6ebef;"> <td style="background-color:#e6ebef;">Avrile</td> </tr> </table> </body> </html>