Choose the most appropriate HTML tag in the following to create a numbered…
2017
Choose the most appropriate HTML tag in the following to create a numbered lists.
Answer: D. < ol > — To create a numbered list in HTML, use the <ol> tag (Ordered List). The <ul> tag creates an unordered list with bullet points, while the <dl> tag is for…
- A.
< dl >
- B.
< ul >
- C.
< li >
- D.
< ol >
Attempted by 501 students.
Show answer & explanation
Correct answer: D
To create a numbered list in HTML, use the <ol> tag (Ordered List). The <ul> tag creates an unordered list with bullet points, while the <dl> tag is for definition lists. Therefore, <ol> is the correct choice for generating numbered sequences.
Loading lesson…