0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

HTMLタグ_2 リスト (覚書)

Last updated at Posted at 2019-04-18

#HTMLタグ−2
##リスト

<ul> </ul> :順序なしリスト unordered list

  • 野球
  • サッカー
  • 水泳

<ol> </ol> :順序なしリスト ordered list

  1. アメリカ
  2. 中国
  3. 日本

##記述例

<ul>
 <li>野球</li>
 <li>サッカー</li>
 <li>水泳</li>
</ul>

<ol>
 <li>アメリカ</li>
 <li>中国</li>
 <li>日本</li>
 <ul>          <!-- リストの入れ子 -->  
    <li>東京</li>
    <li>大阪</li>
    <li>北海道</li>
 </ul>
</ol>

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?