×[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
aタグはanchor、錨(いかり)のaです。リンクの起点または終点を示すことができます。
リンクの起点となる例
href属性と組み合わせて、リンクの起点を示すことができます。
要はリンクを貼ることです。
使用例
例えば「Yahoo」というテキストで「http://www.yahoo.co.jp/」にリンクする場合はこうなります。
<a href="http://www.yahoo.co.jp/">Yahoo</a>
PR
[aタグ(リンク)]の続きを読む
qタグは「引用」を意味します。quotationのqです。
blockquoteタグも引用ですが、qタグは段落の区切りを必要としないような、短いインラインレベルの引用に用います。
qタグの使用例
<p>q要素は<q cite="http://www.w3.org/TR/html4/struct/text.html#h-9.2.2" lang="en">Q is intended for short quotations (inline content) that don't require paragraph breaks.</q>と書かれています。</p>
[qタグ(引用)]の続きを読む
blockquoteタグは「引用」を意味します。
一般に、視覚系ブラウザでは左右に余白ができますが、blockquoteタグはインデント(字下げ)のためのタグではありません。
qタグも引用ですが、blockquoteタグは段落ごと引用するような、ブロックレベルの引用に用います。
blockquoteタグの使用例
<blockquote cite="http://www.w3.org/TR/html4/struct/text.html#h-9.2.2" lang="en">
<p>
However, as some authors have used BLOCKQUOTE merely as a mechanism to indent text, in order to preserve the intention of the authors, user agents should not insert quotation marks in the default style.The usage of BLOCKQUOTE to indent text is deprecated in favor of style sheets.
</p>
</blockquote>
[blockquoteタグ(引用)]の続きを読む