Computer Science, asked by zaid6123, 4 months ago

4. By default, the ordered list starts with:-
(a). A
(b).1
(c). a​

Answers

Answered by vikash9021
8

Answer:

b 1

Explanation:

mark me as brainliest

Answered by ChitranjanMahajan
3

By default, the ordered list starts with 1. Option(b)

  • An ordered list is of items that are numbered.
  • This list can have numbers, alphabets, and roman numerals.
  • To create an ordered list, tags are used.
  • The default value is always 1.
  • <ol> tag represents an ordered list.
  • Consider the example below

           <ol>

           <li>one</li>

           <li>two</li>

           <li>three</li>

           <li>four</li>  

           <li>five</li>

           </ol>

  • The output generated is
  1. one
  2. two
  3. three
  4. four
  5. five
Similar questions