<ul> Tag in HTML 5

In this article I am going to tell about <ul> Tag in HTML 5.
  • 1953

Definition

The <ul> tag is used for unordered (bulleted) list in HTML 5. It is used with <list> tag. Ul is represents unordered list.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>
<head>
       <title></title>
</head>
<body>
         <ul>
             <li>C</li>
             <li>C++</li>
             <li>C#</li>
       </ul>
</body>
</html>

Output

ul.JPG

Further Readings

You may also want to read these related articles

Ask Your Question 

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

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.