HTML (Hyper Text Markup Language) elements starts with opening tag `<` then `tag name` and after that closing tag `>`.
HTML elements all about starting tag and closing tag, and content goes in between them.
HTML uses various elements to structure content on a web page. Each HTML element is defined by tags, and these tags, along with their attributes, create the structure of the page.
All the Elements placed between tag will get displayed on the browser.
<elementName> Content in between elements </elementName>
<h1>Heading 1</h1> <p>Hello World! Example of Elements</p> <label>Label Goes here</label>
-> Defines a paragraph of text.