0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

リスト

Posted at

リストの種類

 <ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
  </ul>
  
  <ol>
    <li>li1</li>
    <li>li2</li>
    <li>li3</li>
  </ol>
  
  <dl>
    <dt>HTML</dt>
    <dd>Webページを作るためのマークアップ言語</dd>
    <dt>CSS</dt>
    <dd>見た目を整える</dd>
    <dt>JavaScript</dt>
    <dd>Webページに動きをつけるプログラミング言語</dd>
  </dl>
  • dl — 定義リスト(description list)
    用語とその説明をセットで書くときに使う。

  • dt — 定義する用語(term)

  • dd — 用語の説明(description)

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?