HTML COURSE โข LESSON 19
HTML Block and Inline Elements
HTML elements are commonly displayed as block elements or inline elements.
Block Elements
A block element normally starts on a new line and uses the available width.
Common Block Elements
<div>,
<p>,
<h1>,
<section>,
<article>
Block Elements
<div>
<h2>EDUHUB</h2>
<p>
Learn online.
</p>
</div>
Inline Elements
An inline element normally stays inside the same line and only uses the width needed by its content.
Common Inline Elements
<span>,
<a>,
<strong>,
<em>,
<img>
Inline Elements
<p>
Learn
<span>
HTML
</span>
with EDUHUB.
</p>