HTML UL <ul> Tag
0 2940
The HTML UL <ul> element is used to define an unordered (bulleted) list of items. We use an unordered list to contain <li> elements that do not need to be presented in numerical order.
Program:
<!DOCTYPE HTML>
<html>
<head>
<title>UL Tag</title>
</head>
<body>
<h2>Example of UL Tag</h2>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>Output:

Share:



Comments
Waiting for your comments