1. Question: How can you make a list that lists the items with numbers?

    A
    <ul>

    B
    <ol>

    C
    <list>

    D
    <dl>

    Note: Not available
    1. Report
  2. Question: How can you make a list that lists the items with bullets?

    A
    <list>

    B
    <ol>

    C
    <dl>

    D
    <ul>

    Note: Not available
    1. Report
  3. Question: Which are the correct code fragment for making the following list?
    1. Apple
    2. Mango
    3. Orange

    A
    <ol type="1"> <li>Apple</li> <li>Mango</li> <li>Orange</li> </ol>

    B
    <ul> <li>1. Apple</li> <li>2. Mango</li> <li>3. Orange</li> </ul>

    C
    <ol> <li>Apple</li> <li>Mango</li> <li>Orange</li> </ol>

    D
    <ol type="number"> <li>Apple</li> <li>Mango</li> <li>Orange</li> </ol>

    Note: Not available
    1. Report
  4. Question: To start a list at the count of 3, use which?

    A
    <ol start="3">

    B
    <ol begin="3">

    C
    <ol list="5">

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd