Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table, th, td { border: 1px solid #666; } </style> </head> <body> <table style="width:80%;"> <tr> <th>Month</th> <th>Date</th> </tr> <tr> <td>January</td> <td>10.01.2014</td> </tr> <tr> <td>February</td> <td>10.01.2014</td> </tr> </table> </body> </html>