Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
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 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter11 : ol_tag 본문

WEB.HTML

chapter11 : ol_tag

GAWON 2023. 5. 18. 09:17
<!--
ol 목록 태그 (ordered list)

```
 1. 순서가 있는 태그
 2. type 속성
    1) type = "1" : 1,2,3
    2) type = "I" : Ⅰ,Ⅱ,Ⅲ
    3) type = "i" : ⅰ,ⅱ,ⅲ
    4) type = "A" : A,B,C
    5) type = "a" : a,b,c

```

- ->

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1><순서 있는 목록></h1>
<ol type="1">
<li>과자</li>
<li>사탕</li>
<li>껌</li>
</ol>
<hr>

```
<ol type="I" start="100">  <!-- 100부터 시작 -->
	<li>서울</li>
	<li>경기</li>
	<li>제주</li>
</ol>

```

</body>
</html>

'WEB.HTML' 카테고리의 다른 글

chapter13 : img_tag  (0) 2023.05.18
chapter12 : mata_tag  (0) 2023.05.18
chapter10 : ul_tag  (0) 2023.05.18
chapter09 : special_char  (0) 2023.05.18
chapter08 : fomatting_tag  (0) 2023.05.18