Saved Bookmarks
| 1. |
Answer the following questions1. What is a list in HTML? How many types of lists can be created in HTML? |
|
Answer» Lists are used to group together related pieces of information so they are clearly associated with each other and easy to read. In modern web development, lists are workhorse elements, frequently used for navigation as well as general content.There are three list types in HTML: unordered list— used to group a set of related items in no particular order ordered list— used to group a set of related items in a specific order description list— used to display name/value pairs such as terms and definitions |
|