html
<!DOCTYPE ...>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>titre onglet</title>
...
</head>
<body>
<h1> Titre</h1>
...
</body>
</html>
peut être représenté par l'arbre suivant :
html ┣━━━ head ┃ ┣━━━ meta ┃ ┣━━━ title ┃ ┗━━━ ... ┗━━━ body ┣━━━ h1 ┗━━━ ...
html
est à la profondeur 0body
est à la profondeur 1h1
est à la profondeur 2