|
CS479/579 - Web Programming II
|
Displaying ./code/HTML/table1.html
<!-- A comment -->
<!DOCTYPE html>
<html>
<head>
<title> Table 1 </title>
<meta charset='utf-8'>
<style>
table {
border-collapse: collapse;
border: 1px solid black;
}
td, th {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<th> X <th> A <th> B <th> C
<tr>
<th rowspan=4> R <td colspan=3> 1
<tr>
<td colspan=3> 2
<tr>
<td colspan=3> 3
<tr>
<td colspan=2> 4 <td> 5
</tbody>
</table>
<div class='hourglass'></div>
</body>
</html>
|