<blockquote> for larger amounts of quoted content

The blockquote element denotes quoted content. It is similar to the q element.

The blockquote element is generally applied to larger amounts of quoted content. The cite attribute can be used to supply a URL for the original source of the content.

 
<!DOCTYPE HTML> 
<html> 
<head> 
<title>Example</title> 
</head> 
<body> 
    <blockquote cite="http://en.wikipedia.org/wiki/HTML"> 
    HyperText Markup Language (HTML) is the main markup language for displaying web pages and other information that can be displayed in a web browser.
    </blockquote> 
</body> 
</html>
  
Click to view this demo.
Home 
  HTML CSS Book 
    HTML  

Related: