w3-video.com logo

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++

Share it



td ... ⁄td, optional element ⁄occurrences

The td element is optional. td can be added once or multiple times within the tr element

Valid Syntax 1
td absent; optional element
1
2
3
4
5
6
7
8
9
<!doctype html>
<html>
<head>
<title>...</title>
</head>
<body>

</body>
</html>
Valid Syntax 2
multiple td elements present
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<head>
<title>...</title>
</head>
<body>

<table>
...
<tbody>
<tr>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
</tr>
</tbody>
</table>

</body>
</html>
td intro td browser display td parents - children td syntaxtd, th, colspan, rowspan attributestd, th, headers attribute