HTML and CSS Reference
In-Depth Information
<tbody>
<tr>
<td>English</td>
<td>B</td>
</tr>
<tr>
<td>Math</td>
<td>A</td>
</tr>
<tr>
<td>Science</td>
<td>C</td>
</tr>
</tbody>
</table>
The <td> element is used to mark up a data cell in a table row.
<td>
<td>This is a table cell.</td>
The <textarea> element is used to create a form control that supports the input of multiple lines of
text.
<textarea>
<label for=”message”>
<textarea name=”message” id=”message” rows=”50” cols=”50”>
</textarea>
The <tfoot> element should contain a block of rows that consist of column summaries. You should
place the <tfoot> element between the <thead> and <tbody> elements.
<table>
<thead>
<tr>
<th>Subject</th>
<th>Result</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Footer 1</td>
<td>Footer 2</td>
</tr>
</tfoot>
<tbody>
...
</tbody>
</table>
<tfoot>
The <th> element is used to define a table heading. This heading could refer to either a column or a
row.
<th>
<thead>
<tr>
Search WWH ::




Custom Search