The Web Design Survival Guide | HTML Example 5
by todaly1
HTML
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
<style>
table,th,tr,td{
border-collapse: collapse;
border: 1px solid black;
padding: 8px;
}
</style>
</head>
<body>
<table width="100%">
<tr>
<th colspan="2">Table Header 1</th>
<th>Table Header 2</th>
</tr>
<tr>
<td colspan="2">Row 1 Data 1</td>
<td>Row 1 Data 2</td>
</tr>
<tr>
<td rowspan="2">Row 2 Data 1</td>
<td>Row 2 Data 2</td>
<td>Row 2 Data 3</td>
<tr>
<td>Row 3 Data 1</td>
<td>Row 3 Data 2</td>
</tr>
</table>
</body>
</html>