0% found this document useful (0 votes)
3 views1 page

Understanding the <em> Tag in HTML

The document outlines two types of HTML tags: semantic tags, which have meaningful content (e.g., <strong>, <em>), and non-semantic tags, which do not convey meaning (e.g., <p>, <b>, <i>). It also describes inline tags that keep content on the same line, container tags for grouping elements, and specific tags for buttons and images. Additionally, it mentions advanced HTML elements like audio, video, and iframe tags.

Uploaded by

Asif Bin altaf
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Understanding the <em> Tag in HTML

The document outlines two types of HTML tags: semantic tags, which have meaningful content (e.g., <strong>, <em>), and non-semantic tags, which do not convey meaning (e.g., <p>, <b>, <i>). It also describes inline tags that keep content on the same line, container tags for grouping elements, and specific tags for buttons and images. Additionally, it mentions advanced HTML elements like audio, video, and iframe tags.

Uploaded by

Asif Bin altaf
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

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

You might also like