Which of the following lists defined in HTML share similar elements? A.…
2022
Which of the following lists defined in HTML share similar elements?
A. Unordered lists
B. Ordered lists
C. Definition Lists
D. Corelated lists
E. Enumerated lists
Choose the most appropriate answer from the options given below:
- A.
A, B, D only
- B.
A, C, E only
- C.
A, B only
- D.
A, C, D only
Attempted by 406 students.
Show answer & explanation
Correct answer: C
Answer: Unordered lists and Ordered lists share similar elements.
Key idea: Both unordered and ordered lists use the same list-item element, which is <li>.
Unordered lists: defined with <ul>; items use <li>.
Ordered lists: defined with <ol>; items also use <li>.
Definition lists: defined with <dl>; entries use <dt> (term) and <dd> (description), not <li>.
Correlated lists: not a standard HTML list type.
Enumerated lists: this term is often used synonymously with ordered lists but is not a separate HTML element.
Conclusion: The lists that share similar elements are Unordered lists and Ordered lists.
A video solution is available for this question — log in and enroll to watch it.