HTML Elements
What are Elements?
HTML elements are the building blocks of webpages.
Example
<h1>My First Heading</h1> <p>This is a paragraph.</p> <div>This is a div element</div> <span>This is a span element</span>
<h1>
Heading element
<p>
Paragraph element
<div>
Block container
<span>
Inline element
Summary
- Elements are building blocks
- They have opening & closing tags
- Everything in HTML is an element