InterviewSolution
Saved Bookmarks
| 1. |
What is a list tag and mention the most commonly used list tags? |
|
Answer» HTML5 users implement list tags to list out the required INFORMATION. The most commonly used list tags are mentioned below for your acknowledgment. Definition List: This list tag offers a list in it and takes Definition Term (<dt>...</dt>) and a DETAILED definition (<dd>...</dd>). 1. Ordered List: This list tag provides the required list by the user in a NUMBERED format. Syntax: 2. Unordered List: This one offers the user required a list in a bullet format. Syntax: Both the ordered and unordered list item tags USE the list item tags (<ul>...</ul>) in them. |
|