x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<table>
5
  <tr>
6
    <th>Table Header</th>
7
    <th>Table Header</th>
8
    <th>Table Header</th>
9
  </tr>
10
  <tr>
11
    <td>Table cell</td>
12
    <td>Table cell</td>
13
    <td>Table cell</td>
14
  </tr>
15
  <tr>
16
    <td>Table cell</td>
17
    <td>Table cell</td>
18
    <td>Table cell</td>
19
  </tr>
20
</table>
21
22
<hr>
23
<p>More info: HTML <a href="/html/tags/html_table_tag.cfm"><code>table</code></a> element, <a href="/html/html_table_tutorial.cfm">Table Tutorial</a>, <a href="/html/html_table_generator.cfm">Table Generator</a>.</p>