HTML/CSS/Table Tags/th
Версия от 09:21, 26 мая 2010; (обсуждение)
"th" Example
<html>
<head>
<title>th element example</title>
</head>
<body>
<table border="1">
<tr>
<th colspan="3">Bold and centered text</th>
</tr>
<tr>
<td>first column</td>
<td>second column</td>
<td>third column</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>