FUNDAMENTALS OF COMPUTER

WEB BROWSERS TECHNOLOGY

WHAT IS WEB TECHNOLOGY

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
How can you make a numbered list?
A
<list>
B
<ol>
C
<dl>
D
<ul>
Explanation: 

Detailed explanation-1: -An ordered list is marked with the numbers by default. You can create an ordered list using the <ol></ol> tag and, define the list items using <li></li>. type="1"− This creates a numbered list starting from 1. type="A"− This creates a list numbered with uppercase letters starting from A.

Detailed explanation-2: -In HTML, we can create an ordered list using the <ol> tag. The ol in the tag stands for an ordered list. Inside each of the ordered list elements <ol> and <ol />, we have to define the list items. We can define the list items using the <li> tag.

Detailed explanation-3: -The HTML <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical.

Detailed explanation-4: -Definition and Usage The start attribute specifies the start value of the first list item in an ordered list. This value is always an integer, even when the numbering type is letters or romans. E.g., to start counting list items from the letter “c” or the roman number “iii", use start="3".

Detailed explanation-5: -An ordered list typically is a numbered list of items.

There is 1 question to complete.