<ul> HTML Tag

In this article we will discuss about how to use underline tag in HTML.
  • 1790

<ul> tag stands for unordered list . This tag is used to make the unordered list which comes in the form of bullets ,disc or circle form. Under it <li> tag comes which stands for list item . It is used to add item in the list.

HTML Code:

<html>

<head>

    <title></title>

</head>

<body>

    <ul>

        <li>Isha</li>

        <li>Megha</li>

        <li>Vishakha</li>

        <li>Manvi</li>

        <li>Akansha</li>

        <li>Richa</li>

    </ul>

    <ul type="circle">

        <li>Mango</li>

        <li>Apple</li>

        <li>Banana</li>

        <li>Orange</li>

        <li>Grapes</li>

    </ul>

    <ul type="square">

        <li>book</li>

        <li>Freeze</li>

        <li>Washing Machine</li>

        <li>Coller</li>

        <li>AC</li>

    </ul>

</body>

</html>

Output:

  • Isha
  • Megha
  • Vishakha
  • Manvi
  • Akansha
  • Richa
  • Mango
  • Apple
  • Banana
  • Orange
  • Grapes
  • book
  • Freeze
  • Washing Machine
  • Coller
  • AC

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.