⭐ Subscript Element
It is used to display text slightly below the baseline.
It is useful for writing chemical formulas.
Its syntax is: <sub>Text Here</sub>
⭐ Line Break Element
It is used to break a text into different lines.
It is useful for writing something like poems.
It does not have a closing tag.
Its syntax is: <br>
⭐ Image Tag
It is used to embed images on the webpages.
It does not have a closing tag.
And, it is a must to use the 'src' attribute in the image tag to make it work.
Its syntax is: <img src="Image location here" >
⭐ Anchor Tag
It is the Element that is used to create hyperlinks to different webpages on the internet or some other webpages on your computer.
It is a must to use the 'href' attribute in the anchor tag to make it work.
Its syntax is: <a href=" URL here "> Name of Link </a>
🔶Ordered List:
It represents an ordered list/ a numbered list.
We have to use the 'List Item' element in this to make a list.
its syntax is: <ol>
<li>Text Here</li>
</ol>
⭐ Heading Element:
The Heading Element is used to represent the headings of different sections.
It is of six types:
🔹 <h1></h1>
🔹 <h2></h2>
🔹 <h3></h3>
🔹 <h4></h4>
🔹 <h5></h5>
🔹 <h6></h6>
⭐ Paragraph Element:
The Paragraph Element represents a paragraph.
It is a block-level element that means it covers the whole line and any other text will go to another line.
Its syntax is <p>Hello</p>.