Review: HTML Elements and Tags

An HTML document is composed of a tree of HTML elements. An element is an individual component of an HTML document. Elements denote to the processor structure and semantic meaning of the document. Elements may also be nested or encapsulated within other elements.</p>

HTML
<p>This is a paragraph element.</p>
<p>This is another paragraph element.</p>

Elements are identified through tags.</p>

HTML
<p>This paragraph element is created with an opening "<p>" tag and a closing "</p>" tag.</p>

html elements tags