<blockquote> Tag in HTML 5

In this article I am going to explain about <blockquote> tag in HTML5.
  • 2105

Definition

 The <blockquote> tag specifies a section that is quoted from another source. The <blockquote> tag defines a long quotation like paragraphs (instead of HTML q tag used for in-line content). A browser inserts white space before and after a blockquote element.

Browser Support by <blockquote>  tag

The <base> tag is supported in internet explorer, mozilla firefox, Google chrome, opera and safari browsers.

Attributes of <blockquote> tag

Attributes Value Description
city URL  Specifies the source of the quotation

Lets take an example of <blockquote> tag
 

<html>
<head>
    <title>this is my first web page</title>
</head>
<body>
    <h1>
        About MCN</h1>
    <p>
        Here is a quote from MCN Solutions</p>
    <blockquote cite="http://www.mcnsolutions.net/">
        In MCN, we have found a partner that we can solely rely on. We have been working
        with these guys for over 5 years now and we have never looked back. MCN guys have
        delivered more than they promised.
    </blockquote>
</body>
</html>

 

Output


Clipboard05.jpg

Further Readings

You may also want to read these related articles :

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.