Home > Web Front-end > HTML Tutorial > How to use dl(dt,dd), ul(li), ol(li) in HTML

How to use dl(dt,dd), ul(li), ol(li) in HTML

高洛峰
Release: 2017-02-25 14:02:27
Original
2037 people have browsed it

HTML

tag

#Definition and usage

tag defines the definition list.
tag is used to combine
(defines the item in the list) and
(describes the item in the list).

#Example

<dl>
<dt>计算机</dt>
<dd>用来计算的仪器 ... ...</dd>
<dt>显示器</dt>
<dd>以视觉方式显示信息的装置 ... ...</dd>
</dl>
Copy after login

HTML

    tag

    #Definition and usage

      tag defines an unordered list.

      #Example

      Unordered HTML list:

      <ul>
      <li>Coffee</li>
      <li>Tea</li>
      <li>Milk</li>
      </ul>
      Copy after login

      HTML

        Tags

        #Definition and usage

        < ol> tag defines an ordered list.

        #Example

        Ordered HTML list:

        <ol>
        <li>Coffee</li>
        <li>Tea</li>
        <li>Milk</li>
        </ol>
        Copy after login

        ul can be combined with ol to define menus and submenus

        <ul>
        <li><a href="#">内容过滤</a><li>
        <li><a href="#">词语过滤</a></li>
        <li class="s">
        <div class="lsub">
        <div>论坛</div>
        <ol>
        <li><a href="#">论坛主题管理</a></li>
        <li><a href="#">论坛批量删帖</a></li>
        </ol>
        </div>
        </li>
        <ul>
        Copy after login

        More HTML dl(dt, For articles related to the usage of dd), ul(li), and ol(li), please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template