Elements

are objects delimited by start- and end-tag, generally:

<tagname ...tag_attributes...>
  tag_content 
</tagname>     

Příklad 1. Example of a non-empty element

<body background="yellow">
   <h1>text node -- content of element h1</h1>      
   <p>text node -- content of element p</p>      
</body>