Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table { width: 80%; margin: 30px auto; border-collapse: collapse; } tr { background-color: #1c87c9; color: #ffffff; } th, td { padding: 10px; border: 1px solid #666; } </style> </head> <body> <table> <tr> <th colspan="2">Month and Date</th> </tr> <tr> <td>Jun</td> <td>18.07.2014</td> </tr> </table> </body> </html>