Remark and Quotation in HTML: Here, we will find out about the HTML remarks and HTML Quotation tag.
HTML Comments
To embed a remark in an HTML report, the remark labels are utilized. The remarks are utilized to give some data that could be valuable for any individual who sees the code of the website page.
The remarks can be embedded by any number of times inside the site page. Likewise, an outstanding point is that the remarks are not noticeable on the site page.
That implies the content in the remarks are disregarded by the internet browser and along these lines, it isn’t noticeable on the website page.
The HTML remarks are put between the <!– text –>
The syntax of the remark tag is as,
<!--
This is a comment in the HTML document.
-->
The remarks could be embedded in wherein the report. It expands the intelligibility of the code in the archive. Likewise, the remarks in HTML are upheld by practically the entirety of the present-day programs. These remarks are multi-line remarks.
The following is a guide to represent the utilization of remarks,
<!-- The sample HTML code -->
<html>
<body>
<p>Line before the comment.</p>
<!--
This is the comment line
any text can be written here
that will not display on the webpage.
-->
<p>Line after the comment.</p>
</body>
</html>
Output:
HTML Quotation
components: The citations in HTML report are included by utilizing the tag. The content which is to be shown in cites is written in the middle of the tag.
Example:
<p>Welcome at <q>JustTechReview</q>.</p>
Output:
Welcome at "JustTechReview".
The tag is utilized for the little citation in the content.
Component
The <blockquote> component is likewise utilized for making citations. Yet, it is to some degree not quite the same as the component. Not at all like the tag, the <blockquote> don’t put citations(“) in the content, yet it changes the arrangement of the content to make it unique in relation to different messages on the page. The program by and large means the substance in the BLOCKQUOTE tag.
A case of tag <blockqoute> component
<!-- The sample HTML code -->
<html>
<body>
<p>
the text is blockqoute is quoted differently then the other text
<blockquote> some text in the BLOCKQOUTE element </blockquote>
</p>
</body>
</html>
Output:
<address> element
The <address> component indicates a location inside the website page and the content that is inside the location tag would be underscored. It additionally has both the labels: opening and shutting labels.
An example of <address> tag
<!-- The sample HTML code -->
<html>
<body>
<address>
<p>
Address:<br>
123-block, LN road<br>
Sector-110, Delhi
</p>
</address>
</body>
</html>
Output:
<abbr> element
The component is utilized to characterize a book as an abbreviation or shortenings.
The <abbr> title ascribes can be utilized to show the full form of the shortening/abbreviation when you mouse over the component. It has both opening and shutting labels.
An example of <abbr> tag
<!-- The sample HTML code -->
<html>
<body>
<p>
place your mouse over the following text :
<abbr title=" World Wide Web "> www </abbr>
</p>
</body>
</html>
Output: