नई सूची आइटम बनाने और हाइपरलिंक भी शामिल करने के लिए उपयोग किया जाने वाला टैग है:
The tag used to create a new list item and also include a hyperlink is :
A
<li>
B
<dl>
C
<dd>
D
<ul>
Explanation
The tag used to create a new list item and also include a hyperlink is:
(for the list item) combined with (for the hyperlink).
Example:
In this example:
- The
tag is used to create an unordered list. - The
tag is used to create a list item. - The
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.
Correct Answer: A) <li>