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: #e6ebef; } tr:first-child { background-color: #1c87c9; color: #fff; } tr:last-child { height: 60px; } tr:last-child td { background-color: #a3cced; } tr:last-child span { font-size: 14px; } th, td { padding: 10px; border: 1px solid #666; } </style> </head> <body> <table> <tr> <th>Company e-mail</th> <th>Date</th> </tr> <tr> <td> <a href="#">info@w3docs.com</a> </td> <td>01.09.2017</td> </tr> <tr style="height:60px;"> <td colspan="2" valign="bottom">info@w3docs.com; <strong>01.09.2017 </strong> <span>(received date)</span> </td> </tr> </table> </body> </html>