An HTML element is a piece made up of a start tag + content + end tag. For example, in <p>Hello</p>, <p> is the start tag, Hello is the content, and </p> is the end tag.
<br>, <img>, <input> — tags that don't hold content — are called empty elements. Think of them as the "I'm fine flying solo" type.
html
<h1>This is a heading</h1>
<p>This is a paragraph with some text.</p>
This text is on one line.<br>
This text is on a new line.You should see
You should see text output containing a heading, a paragraph, and a line break.