नई सूची आइटम बनाने और हाइपरलिंक भी शामिल करने के लिए उपयोग किया जाने वाला टैग है:
The tag used to create a new list item and also include a hyperlink is :
A)
B)
C)
D)
Explanation:
The tag used to create a new list item and also include a hyperlink is:
<li>
(for the list item) combined with <a>
(for the hyperlink).
Example:
In this example:
- The
<ul>
tag is used to create an unordered list. - The
<li>
tag is used to create a list item. - The
<a>
tag is used to create a hyperlink within the list item.
The list items contain clickable links, allowing users to navigate to the specified URLs.