🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

नई सूची आइटम बनाने और हाइपरलिंक भी शामिल करने के लिए उपयोग किया जाने वाला टैग है:

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:

<ul> <li><a href="https://www.example.com">Visit Example</a></li> <li><a href="https://www.example2.com">Visit Example 2</a></li> </ul>

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.

Latest Updates