<blockquote> HTML Tag

In this article we are going to learn blockquote tag in HTML.
  • 1995

The HTML blockquote element inserts block quotations. The HTML blockquote tag is used for indicating long quotations. It indicates the block level element and is used to insert the block quotes and it like the paragraph tag in HTML.

HTML Code

<html>

<head>

    <title>Not a Meta Tag, but required anyway</title>

</head>

<body>

    <blockquote cite="https://dotnetheaven.com/">

        <p>

            The power of the Web is in its universality. Access by everyone regardless of disability

            is an essential aspect.</p>

    </blockquote>

</body>

</html>

Output

2.gif

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
Programming Answers here
  

© 2020 DotNetHeaven. All rights reserved.