Elements & Attributes
An element is an opening tag + content + closing tag.
<a href="https://example.com">Visit</a>
Here href is an attribute. Most elements can nest:
<ul>
<li>One</li>
<li>Two</li>
</ul>
Tags, attributes, and nesting.
An element is an opening tag + content + closing tag.
<a href="https://example.com">Visit</a>
Here href is an attribute. Most elements can nest:
<ul>
<li>One</li>
<li>Two</li>
</ul>