1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

概要

HTMLにふれるうえで本当に最小限知っておきたい用語を簡単にまとめる。

内容

説明に使うコード

サンプルコード1

<p>私の猫はとても不機嫌</p>
パーツ 用語 備考
<p> 開始タグ
</p> 終了タグ
私の猫はとても不機嫌 コンテンツ 開始タグと終了タグの間にあるもの
<p>私の猫はとても不機嫌</p> 要素 開始タグと終了タグの間のコンテンツ全て含めたもの

サンプルコード2

<p class="hoge">私の猫はとても不機嫌</p>
パーツ 用語 備考
class 属性の名前
hoge 属性の値
class="hoge" 属性

参考文献

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?