mirror of
https://github.com/swc-project/swc.git
synced 2025-01-04 11:37:06 +03:00
18 lines
424 B
HTML
18 lines
424 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Document</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table width="200" border="1" align="center" cellpadding="4" cellspacing="0">
|
||
|
<tr>
|
||
|
<th colspan="1" rowspan="1" scope="col">Cell 1</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="test" colspan="1" rowspan="1" bgcolor="#FBF0DB">
|
||
|
Cell 1
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|