Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- php
- DoM
- github
- html
- architecture
- computer
- while
- DS
- react
- Class
- mysql
- Pipelining
- for
- Linux
- MIPS
- DB
- Java
- function
- control
- MacOS
- Algorithm
- data structure
- web
- instruction
- CSS
- python
- system
- DATAPATH
- XML
- javascript
Archives
- Today
- Total
YYYEJI
[HTML] HTML의 list (ul, ol, dl) 본문
728x90
<ul> unordered list - 순서가 없는 리스트
<ol> ordered list - 순서가 있는 리스트
<li> list item - 리스트 아이템
<dl> description item list - 서술 리스트
<dt> description item - 서술 아이템
<dd> description data - 서술 데이타
<ul> - unordered list
<ul>
<li>Freshman</li>
<li>Sophomore</li>
<li>Junior</li>
<li>Senior</li>
</ul>
<ol> - ordered list
<ol>
<li>Freshman</li>
<li>Sophomore</li>
<li>Junior</li>
<li>Senior</li>
</ol>
<dl> - description list
<dl>
<dt>Lower grades</dt>
<dd>• Freshman</dd>
<dd>• Sophomore</dd>
<dt>Upper grades</dt>
<dd>• Junior</dd>
<dd>• Senior</dd>
</dl>
◡̈
'HTML(or XML) & CSS & JavaScript' 카테고리의 다른 글
[HTML] Ordered List의 Special Marker (0) | 2022.11.12 |
---|---|
[HTML] Unordered List의 Special Marker (0) | 2022.11.12 |
[HTML] Text를 디자인하는 특별한 태그 (0) | 2022.11.12 |
[HTML] HTML이란 (0) | 2022.11.08 |
[JavaScript] Element의 value 값 replace (0) | 2022.11.05 |