카테고리 없음

[HTML] ol,ul,li 알아보기

solutionMan 2021. 7. 11. 15:16
반응형

https://developer.mozilla.org/ko/docs/Web/HTML/Element/ol

 

 

      - HTML: Hypertext Markup Language | MDN

 

HTML

        요소는 정렬된 목록을 나타냅니다. 보통 숫자 목록으로 표현합니다.

 

developer.mozilla.org

 

 

 

 

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
 <!----- ol, ul , li--->
 <ol typy="i" reversed>
   <li>1</li>
   <li>2</li>
    <ol>
      <ul>
        <li>1</ll>
        <li>1</li>
        <li>1</li>
      </ul>
   </ol>
   <li>3</li>
</ol>
 
  
 
</body>
</html>

반응형