Welcome ðŸŽ‰

logo

ReactLMS

Search
Light Mode
Contact Us

1 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


The <blockquote> tag in HTML is used to quote a block of text from an external source.

It is often used to highlight quotations or content excerpted from another source.

Tag <blockquote> has some important attributes as follows:


How to use


<blockquote>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vel risus eget nunc tincidunt rutrum. Sed fringilla eros id massa efficitur, eget pharetra ligula tincidunt.</p>
    <cite>John Doe</cite>
</blockquote>






Result

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vel risus eget nunc tincidunt rutrum. Sed fringilla eros id massa efficitur, eget pharetra ligula tincidunt.

John Doe

In the example above, the quoted text is placed within the <p> tag, and the author of the quote is placed within the <cite> tag.



Read more
On This Page