WitzCode
← All tracks
📄 HTML·Elements & Attributes

Elements & Attributes

Tags, attributes, and nesting.

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>