Share
HTML Elements
An HTML element is everything from the start tag to the end tag:
| Start Tag | Element Content | End Tag |
| <p> | This is a paragraph | </p> |
| <a href='default.htm'> | This is a link | </a> |
| <br /> | | |
* The start tag is often called the opening tag. The end tag is often called the closing tag.