What is the usage of ol tag in html

WBOY
Release: 2021-12-30 16:18:00
Original
4261 people have browsed it

In HTML, the ol tag is used to define an ordered list. The order of the list is displayed in numbers. The content in the list is defined by the li tag. The syntax is "

  1. . ..
”; When the reversed attribute is set in the ol tag, the ordered list can be displayed in reverse order.

What is the usage of ol tag in html

The operating environment of this tutorial: Windows 10 system, HTML5 version, Dell G3 computer.

What is the usage of ol tag in html

    tag is used to define an ordered list. The list is sorted by numbers to display.

    Use the

  1. tag to define list options.

    Can use CSS to render, unordered list, can use

      tag.

      The syntax is as follows:

      <ol>
      <li>...</li>
      ...
      </ol>
      Copy after login

      The example is as follows:

      <html>
      <head> 
      <meta charset="utf-8"> 
      <title>123</title> 
      </head>
      <body>
      <ol>
        <li>Coffee</li>
        <li>Tea</li>
        <li>Milk</li>
      </ol>
      <ol start="50">
        <li>Coffee</li>
        <li>Tea</li>
        <li>Milk</li>
      </ol>
       
      </body>
      </html>
      Copy after login

      Output result:

      What is the usage of ol tag in html

      Recommended tutorial: "html video tutorial"

The above is the detailed content of What is the usage of ol tag in html. For more information, please follow other related articles on 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!