ブロック引用要素 <blockquote>
ブロック引用要素は、ブロック引用(block quote)を表す。
ブロック引用要素は、インラインよりも長いブロック単位の引用に使用し、インラインの引用には、 インライン引用要素 <q>を使用する。
また、引用要素 <cite>によって引用元のタイトルなどを明示できる。
公式サイト:HTML Standard - WHATWG#4.4.4 The blockquote element
参考:<blockquote>: ブロック引用要素 - HTML: HyperText Markup Language | MDN
1. ソースコードの例
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<blockquote cite="https://html.spec.whatwg.org/multipage/grouping-content.html#the-blockquote-element">
<p>『The blockquote element represents a section that is quoted from another source. Content inside a blockquote must be quoted from another source, whose address, if it has one, may be cited in the cite attribute.』</p>
<p> - 「<a> href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-blockquote-element">HTML Standard#4.4.4 The blockquote element</a>」より引用</p>
</blockquote>
</body>
</html>
『The blockquote element represents a section that is quoted from another source. Content inside a blockquote must be quoted from another source, whose address, if it has one, may be cited in the cite attribute.』
2. ブロック引用要素 <blockquote>が持つコンテンツ属性
参考:<blockquote>: ブロック引用要素 - HTML: HyperText Markup Language | MDN#属性
- グローバル属性
- cite属性
3. KnotTextでのHTML要素の分類
参考:HTML elements reference - HTML | MDN
文書についての情報
見出しと文章
話題の区切りと文章の折返し
ソースコード
引用
言葉の定義
スタイリングのためのコンテナ
ブロックレベルのボックス
- < html >
- < body >
- < section >
- < article >
- < nav >
- < aside >
- < header >
- < footer >
- < address >
- < main >
特殊なブロックレベルの構造(リスト形式)
特殊なブロックレベルの構造(テーブル形式)
特殊なブロックレベルの構造(フォーム形式)
- < form >
- < label >
- < input >
- < button >
- < select >
- < datalist >
- < optgroup >
- < option >
- < textarea >
- < output >
- < progress >
- < meter >
- < fieldset >
- < legend >
特殊なブロックレベルの構造(インタラクティブ形式)
インラインレベルのテキスト
- < a >
- < em >
- < strong >
- < small >
- < s >
- < data >
- < time >
- < i >
- < b >
- < u >
- < mark >
- < ins >
- < del >