HTML
list
byeol_dev
2023. 2. 8. 12:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- ์์๊ฐ ์๋ ๋ชฉ๋ก -->
<ul> <!-- unordered list -->
<li>java</li> <!-- list ์ค์๋ง -->
<li>c++</li>
<li>python</li>
</ul>
<!-- ์์๊ฐ ์๋ ๋ชฉ๋ก -->
<ol> <!-- ordered list -->
<li>java</li> <!-- list ์ค์๋ง -->
<li>c++</li>
<li>python</li>
</ol>
</body>
</html>

๋ณดํต ์น ์ฌ์ดํธ ๋ฉ๋ด ๋ง๋ค ๋ ๋ง์ด ์ด๋ค
> ์์๊ฐ ์๋ ๋ชฉ๋ก
> ์์๊ฐ ์๋ ๋ชฉ๋ก