lotte css

Lists

Unordered Lists

  • Item one
  • Item two
  • Item three
    • Nested item one
    • Nested item two
  • Item four
<ul>
  <li>Item one</li>
  <li>Item two</li>
  <li>Item three
    <ul>
      <li>Nested item one</li>
      <li>Nested item two</li>
    </ul>
  </li>
  <li>Item four</li>
</ul>

Ordered Lists

  1. First item
  2. Second item
  3. Third item
    1. Nested ordered item one
    2. Nested ordered item two
  4. Fourth item
<ol>
  <li>First item</li>
  <li>Second item</li>
  <li>Third item
    <ol>
      <li>Nested ordered item one</li>
      <li>Nested ordered item two</li>
    </ol>
  </li>
  <li>Fourth item</li>
</ol>

Definition Lists

HTML
HyperText Markup Language. The standard markup language for documents designed to be displayed in a web browser.
CSS
Cascading Style Sheets. A style sheet language used for describing the presentation of a document written in HTML.
JavaScript
A programming language that conforms to the ECMAScript specification.
<dl>
  <dt>HTML</dt>
  <dd>HyperText Markup Language. The standard markup language for documents designed to be displayed in a web browser.</dd>
  
  <dt>CSS</dt>
  <dd>Cascading Style Sheets. A style sheet language used for describing the presentation of a document written in HTML.</dd>
  
  <dt>JavaScript</dt>
  <dd>A programming language that conforms to the ECMAScript specification.</dd>
</dl>