Commentary

Standard ul, ol and dl HTML tags that are controlled by the file setup_base_html.css

Usage

Classes:
none
Dependencies:
File: setup_base_html.css
Variables: none

Examples

  • unordered one
  • unordered two
  1. ordered one
  2. ordered two
datalist one
datalist two

                <ul>
                    <li>unordered one</li>
                    <li>unordered two</li>
                </ul>

                <ol>
                    <li>ordered one</li>
                    <li>ordered two</li>
                </ol>

                <dl>
                    <dt>datalist one</dt>
                    <dd>datalist two</dd>
                </dl>