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> <th>Mois</th> <th>Date</th> </tr> <tr> <td>Juin</td> <td>10.06.2018</td> </tr> <tr> <td>Juillet</td> <td>15.07.2018</td> </tr> </table> </body> </html>