正しいマークアップ、タグの意味

STOPN' LISTENというサイトでHTMLのタグについてまとめていただいていたので、忘れないようにここにも残させてもらいました。(X)HTML+CSSで正しくマークアップするには本来の意味を理解することも必要ですし。

ブロックレベル要素

h1~h6
headings(見出し)
p
paragraph(段落)
ul
unordered list(順不同リスト)
ol
ordered list(順序の有るリスト)
li
list item(リストアイテム)
dl
definition list(定義リスト)
dt
definition term(定義語)
dd
definition description(定義語の記述)
tr
table row(テーブルの縦行)
th
table header(テーブルの見出し)
td
table data(テーブルデータ)
div
division(区切り)
blockquote
block long quotation(引用)
pre
preformatted text(整形済テキスト)
hr
horizontal rule(区切り線)

インライン要素

a
anchor(アンカー)
br
line break(ラインブレイク)
em
emphasis(強調)
img
Embedded image(埋め込み画像)
q
short inline quotation(引用文)
cite
citation(引用元)
code
computer code fragment(ソースコード)
dfn
instance definition(定義対象用語)
abbr
abbreviated form(略語)
samp
sample program output(出力サンプル)
var
instance of a variable(変数)

アトリビュート

id
element identifiers(識別子)
href
hyper reference(参照元)
src
resource(リソース)
alt
alternate text(代替テキスト)
rel
relationship(関係性)
align
alignment(整列)
2007年03月