The <span> tag used for applying css styles to inline elements. The major difference between <span> and <div> tag is that <span> is used for inline elements and the otherhand <div> tag is used for block-level elements.
Example of Code
<span class="myClass">Content here...</span>
Output
Content here...
