There are 2 types of html tag
1. Semantic tag: Meaningful
Ex: <strong> Like bold but take extra focus </Strong>
<em> Emphasize Like italic but same take extra focus </em>
2. Non semantic tag: No meaning
Ex: <p>paragraph tag</p>, <b>bold tag</b>, <i> italic tag</i>
Inline tag: Contain all data in same line
Ex: bold, em, I, strong, small, anchor
Container Tag: div, order list <ol>, unordered list<ul>
Button tag: <button>Click me mammma!</button>
Image Tag: <img src=’link’ alt=’alternative’>
Select one thing from multiple option:
<select>
<option value=”Apple”>Apple</option>
</select>
Advance HTML:
Audio, Video and I frame tag in html