Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок окна веб-страницы</title> <style> table,th,td{border:1px solid #cccccc} </style> </head> <body> <table > <tr> <th>Месяц</th> <th>Дата</th> </tr> <tr> <td>Январь</td> <td rowspan="2">10.01.2018</td> </tr> <tr> <td>Февраль</td> </tr> </table> </body> </html>