blockquote

<blockquote> 要素は、その内容が別のソースから引用されたコンテンツであることを表します。必要に応じて<footer> 要素<cite> 要素の中で使用します。

カテゴリー
フロー・コンテンツ、セクショニング・ルート、パルパブル・コンテンツ
配置場所
フロー・コンテンツが置ける場所。
内容
フロー・コンテンツ
属性
cite="引用元のURL"
引用元となるURLがある場合はこの属性にURLを指定します。
グローバル属性

accesskey, autocapitalize, autofocus, class, contenteditable, data-*, dir, draggable, enterkeyhint, hidden, id, inputmode, is, itemid, itemprop, itemref, itemscope, itemtype, lang, nonce, spellcheck, style, tabindex, title, translate

サンプル

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>HTML5 › blockquote</title>
</head>
<body>
<h1>HTML5 › blockquote</h1>
<blockquote cite="http://yui.github.io/yuicompressor/">
  <p>
According to Yahoo!'s Exceptional Performance Team, 40% to 60% of Yahoo!'s users have an empty cache experience and about 20% of all page views are done with an empty cache (see this article by Tenni Theurer on the YUIBlog for more information on browser cache usage).
  </p>
</blockquote>
</body>
</html>