国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML basic tutorial HTML list

HTML bullets (unordered list)

Lists can be seen everywhere on web pages, such as news pages, such lists can be seen everywhere

5.png

These lists can be completed using the ul-li tag. ul-li is a list of information in no order.

Next, let’s achieve this effect

Syntax:

<ul >

????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????Common attributes of ##</ul>

<ul> or <li>

type: the type of bullet, Values: disc (small black dot), circle (hollow circle), square (solid square)

## Example:
    <!DOCTYPE HTML>
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        </head>
        <body>
       <ul type="square">
    
        <li>三星在大陸召回19萬臺(tái)Note7手機(jī) 可全額退款</li>
    
        <li>國(guó)土部等5部委:進(jìn)城落戶人口人均用地不超1百平米</li>
    
        <li>13位科學(xué)家實(shí)名呼吁對(duì)韓春雨啟動(dòng)調(diào)查:為學(xué)界名聲</li>
    
    </ul>
        </body>
    </html>
  • Note:

    In HTML markup, content should be placed in the lowest level markup.

HTML number list (ordered list)

There is also such a list in the website

This kind of information display can use the <ol> tag to create an ordered list for display.

Grammar:

6.png

<ol>

??????????????????????????????????????????????????????????????????????????????????????????or Common attributes of <li>

## type: number type, values: 1, a, A, i, I

start: From which number to start numbering (number).

Modify the above example:

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
   <ol type="1" start="1">

    <li>三星在大陸召回19萬臺(tái)Note7手機(jī) 可全額退款</li>

    <li>國(guó)土部等5部委:進(jìn)城落戶人口人均用地不超1百平米</li>

    <li>13位科學(xué)家實(shí)名呼吁對(duì)韓春雨啟動(dòng)調(diào)查:為學(xué)界名聲</li>

</ol>
    </body>
</html>

Note: You can try changing the value of the attribute to see what changes the output

Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <ul type="square"> <li>三星在大陸召回19萬臺(tái)Note7手機(jī) 可全額退款</li> <li>國(guó)土部等5部委:進(jìn)城落戶人口人均用地不超1百平米</li> <li>13位科學(xué)家實(shí)名呼吁對(duì)韓春雨啟動(dòng)調(diào)查:為學(xué)界名聲</li> </ul> </body> </html>
submitReset Code