Comments are ignored by the web browser and it is not displayed on the web page. Comment tag is used to insert comments in the HTML document, which help us to provide description or explanation of our source code, which can be helpful while editing the code later.
<!-- Single Line Comment-->
<!-- Multi
Line Comment-->
Quotations are used to put a short quotation in the HTML document or web page. There are basically two types of quotation tag available in HTML documents, which are given below-
The <q>
Tag:- This tag is used to define a short quotation in the HTML document.
<p>Hello, <q>Good Morning!</q></p>
The <blockquote>
Tag:- This tag is used to define a long quotation in the HTML document.
<p>Hello, <blockquote>Good Morning!</blockquote></p>