Learn the basics of Web page creation tutorial (9) Sequence label

Source: Internet
Author: User
Tags add lowercase
Tutorials | Getting Started | Web page

Related articles:

  Learn the basics of Web Authoring Tutorial (1) Web authoring

  Learn the basics of Web making (2) typography labels

  Learn the basics of Web page creation tutorial (3) Font label

  Learn the basics of Web page creation tutorial (4) Image label

  Learn the basics of Web page creation tutorial (5) Image label

  Learn the basics of Web page creation Tutorial (6) Connection label

  Learn the basics of Web page creation tutorial (7) Table label

  Learn the basics of Web page creation Tutorial (8) Frame label

  Unordered label

1. The sequence label can basically be divided into two types, one is "unordered column" and the other is "ordered column". The so-called "unordered column" Of course means that there is no sequential relationship between the columns, simply using a bar-style method to display the information, such a disorderly label, in front of each column has a symbol to separate. As for "ordered column" means that there is a sequence between the columns, from 1, 2, 3 ... Extend it all the way down.

2. Let's take a look at how the unordered list label is used:

Raw code Show results
<UL>
<LI> Handsome
<LI> Beauties
<LI> Beautiful World
</UL>
  • Handsome
  • Girl
  • Beautiful World

  Where <UL> label is "unordered list label", each additional column of content, you must add a <LI>.

3. Must the symbol in front be round? No, we can add the type= "shape name" property to change its symbolic shape, a total of three choices: DISK (solid circle), square (small square), CIRCLE (hollow circle) Three kinds

Raw code Show results
<ul type= "CIRCLE" >
<LI> Handsome
<LI> Beauties
<LI> Beautiful World
</UL>
  • Handsome
  • Girl
  • Beautiful World

   Ordered label

1. Next, let's take a look at how the ordered list label is used:

Raw code Show results
<OL>
<LI> Handsome
<LI> Beauties
<LI> Beautiful World
</OL>
  1. Handsome
  2. Girl
  3. Beautiful World

Where <OL> label is "ordered label", each additional column content, must add a <LI>.

2. As with unordered list labels, we can also select different symbols to display the order, the same is done with the type attribute, with a more than five symbols: 1 (digits), a (uppercase Alphabet), a (lowercase English letter), I (uppercase Roman alphabet), I (lowercase roman alphabet), and so on, five kinds of:

Raw code Show results
<ol type= "A" >
<LI> Handsome
<LI> Beauties
<LI> Beautiful World
</OL>
  1. Handsome
  2. Girl
  3. Beautiful World

3. Alternatively, we can specify the number of sequence initiation, as follows:

Raw code Show results
<ol start= "Ten" >
<LI> Handsome
<LI> Beauties
<LI> Beautiful World
</OL>
  1. Handsome
  2. Girl
  3. Liang Shi



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.