mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +03:00
19 lines
439 B
HTML
19 lines
439 B
HTML
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<title>Document</title>
|
||
</head>
|
||
<body>
|
||
<table>
|
||
<caption>Superheros and sidekicks</caption>
|
||
<colgroup><col><col span="2" class="batman"><col span="2" class="flash"></colgroup>
|
||
<tr>
|
||
<td> </td>
|
||
<th scope="col">Batman</th>
|
||
<th scope="col">Robin</th>
|
||
<th scope="col">The Flash</th>
|
||
<th scope="col">Kid Flash</th>
|
||
</tr>
|
||
</table>
|
||
</body>
|
||
</html> |