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

chapter10 : ul_tag 본문

WEB.HTML

chapter10 : ul_tag

GAWON 2023. 5. 18. 09:16
<!--
ul 목록 태그(unordered list)

1.순서가 없는 태그
2.목록을 나열하여 메뉴를 만드는 용도로 사용
3.type 속성
1) type="disc"      :●, default값
2) type="circle"    :○
3) type="square"    :■
-->

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1><순서 없는 목록></h1>
<ul type="disc">
<li>호랑이</li>
<li>사자</li>
<li>뱀</li>
<li>고양이</li>
<li>강아지</li>
</ul>

```
<hr>

<ul type="circle">
	<li>C</li>
	<li>JAVA</li>
	<li>DB</li>
	<li>Python</li>
	<li>Spring</li>
</ul>

<hr>

<ul style="list-style-type: spuare; color:maroon;">
	<li>동그라미</li>
	<li>네모</li>
	<li>세모</li>
	<li>마름모</li>
	<li>직사각형</li>
</ul>

```

</body>
</html>

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

chapter12 : mata_tag  (0) 2023.05.18
chapter11 : ol_tag  (0) 2023.05.18
chapter09 : special_char  (0) 2023.05.18
chapter08 : fomatting_tag  (0) 2023.05.18
chapter07 : hr_tag  (0) 2023.05.18