Jump to content
Fórum Script Brasil
  • 0

Listas em html


Brown.

Question

Quero fazer o seguinte

A. Item - na cor vermelho

1.Item na cor preto

2.Item na cor preto

3.Item na cor preto

B. Item vermelho

C. Item vermelho

a.Item preto

b.Item preto

i. Item verde

ii. Item verde

iii. Item verde

D. Item vermelho

E. Item vermelho

Consegui ate aqui

<html>
<head>
</head>
<body>
        
            
        </font>
    </h3>
    <ol type = 'A'>
        <li >
            <font color = "red" >Item </font>

            <ol type = '1'>
                <li>
                    <font color = 'black'>
                        <u>Item</u>
                    </font>
                </li>
                <li>
                    <font color = 'black' >
                        <u>Item </u>
                    </font>
                </li>
                <li>
                    <font color = 'black' >
                        <u>Item </u>
                    </font>
                </li>
            </ul>
        </li>
        <li>
        </ol>

</body>
</html>

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

<html>
<head>
</head>
<body>
        
            
        </font>
    </h3>
    <ol type = 'A'>
        <li >
            <font color = "red" >Item </font>

            <ol type = '1'>//aqui você abriu uma tag OL
                <li>
                    <font color = 'black'>
                        <u>Item</u>
                    </font>
                </li>
                <li>
                    <font color = 'black' >
                        <u>Item </u>
                    </font>
                </li>
                <li>
                    <font color = 'black' >
                        <u>Item </u>
                    </font>
                </li>
            </ul>// aqui você fechou uma tag UL
        </li>
        <li>// Aqui você deixou uma tag LI aberta
        </ol>

</body>
</html>
até o seu código só teve os 3 erros que apontei acima o resto ta certinho e a lógica de qual tag fica dentro de qual também abaixo ta o seu código até agora corrigido
<html>
<head>
</head>
<body>
</font>
</h3>
<ol type = 'A'>
    <li >
        <font color = "red" >Item </font>
        <ol type = '1'>
            <li>
                <font color = 'black'>
                    <u>Item</u>
                </font>
            </li>
            <li>
                <font color = 'black' >
                    <u>Item </u>
                </font>
            </li>
            <li>
                <font color = 'black' >
                    <u>Item </u>
                </font>
            </li>
        </ol>
    </li>
</ol>
</body>
</html>

Boa sorte Abraços

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...